diff options
Diffstat (limited to 'test/spec/test.js')
-rw-r--r-- | test/spec/test.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/spec/test.js b/test/spec/test.js new file mode 100644 index 000000000..0fca0fb57 --- /dev/null +++ b/test/spec/test.js @@ -0,0 +1,11 @@ +(function () { + 'use strict'; + + describe('Give it some context', function () { + describe('maybe a bit more context here', function () { + it('should run here few assertions', function () { + + }); + }); + }); +})(); |