mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-29 22:01:49 +03:00
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
|
const assert = require('assert/strict');
|
||
|
|
||
|
describe('Hello world', function () {
|
||
|
it('Runs a test', function () {
|
||
|
// TODO: Write me!
|
||
|
assert.ok(require('../../index'));
|
||
|
});
|
||
|
});
|