mirror of
https://github.com/d0zingcat/ghost-docker.git
synced 2026-05-14 07:26:45 +00:00
9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
const assert = require('assert/strict');
|
|
|
|
describe('Hello world', function () {
|
|
it('Runs a test', function () {
|
|
// TODO: Write me!
|
|
assert.ok(require('../index'));
|
|
});
|
|
});
|