mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
|
import assert from 'assert/strict';
|
||
|
|
||
|
describe('Hello world', function () {
|
||
|
it('Runs a test', function () {
|
||
|
// TODO: Write me!
|
||
|
assert.ok(require('../'));
|
||
|
});
|
||
|
});
|