Files
peneloplay/test/spec/test.js
Fergal Moran 6e8068cedd Initial commit
2014-01-13 14:52:31 +00:00

12 lines
275 B
JavaScript

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