8d6fb51908
refs https://github.com/TryGhost/Team/issues/3504 Not complete yet, but contains the basic structure and a few tests that work and should run in CI.
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
const assert = require('assert/strict');
|
|
|
|
describe('Hello world', function () {
|
|
it('Runs a test', function () {
|
|
// TODO: Write me!
|
|
assert.ok(require('../../index'));
|
|
});
|
|
});
|