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