mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
|
const assert = require('assert');
|
||
|
|
||
|
describe('Hello world', function () {
|
||
|
it('Runs a test', function () {
|
||
|
assert.equal('hello', 'hello');
|
||
|
});
|
||
|
});
|