blob: 0fca0fb573b516a5cdfaf62350fdd79d0a6b26c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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 () {
});
});
});
})();
|