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