13 lines
149 B
JavaScript
13 lines
149 B
JavaScript
|
(function () {
|
||
|
'use strict';
|
||
|
|
||
|
describe('first', function () {
|
||
|
|
||
|
it('nothing here', function () {
|
||
|
|
||
|
assert.isTrue(true);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
}());
|