Ghost/ghost/oembed-service/test/hello.test.js

8 lines
168 B
JavaScript
Raw Normal View History

const assert = require('assert/strict');
describe('Hello world', function () {
it('Runs a test', function () {
assert.ok(require('../index'));
});
});