This commit is contained in:
Nikolai Kristiansen
2014-09-13 13:31:11 +02:00
parent 9bcafd2883
commit 6d098eb913
25 changed files with 1235 additions and 0 deletions

13
test/spec/test.js Normal file
View File

@@ -0,0 +1,13 @@
/* 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 () {
});
});
});
})();