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