Files
weave-scope/client/test/spec/test.js
2015-05-19 10:02:02 +00:00

14 lines
256 B
JavaScript

/* global describe, it */
(function () {
'use strict';
describe('Give it some context', function () {
describe('maybe a bit more context here', function () {
it('should run here few assertions', function () {
});
});
});
})();