mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-24 02:07:50 +00:00
12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
describe('Give it some context', function () {
|
|
describe('maybe a bit more context here', function () {
|
|
it('should run here few assertions', function () {
|
|
|
|
});
|
|
});
|
|
});
|
|
})();
|