mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
2cace2987d
Ref ENG-1351 ENG-1373
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
import assert from 'assert/strict';
|
|
|
|
describe('Hello world', function () {
|
|
it('Runs a test', function () {
|
|
// TODO: Write me!
|
|
assert.equal(1, 1);
|
|
});
|
|
});
|