Ghost/ghost/recommendations/test/hello.test.ts

9 lines
185 B
TypeScript
Raw Normal View History

import assert from 'assert/strict';
describe('Hello world', function () {
it('Runs a test', function () {
// TODO: Write me!
assert.ok(require('../'));
});
});