Files
edb-www/test/spec/test.js
Nikolai Kristiansen 6d098eb913 WIP
2014-09-13 13:31:11 +02:00

14 lines
282 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 () {
});
});
});
})();