Ghost/ghost/constants/test/hello.test.js

11 lines
262 B
JavaScript
Raw Normal View History

2020-08-11 14:15:36 +03:00
// Switch these lines once there are useful utils
// const testUtils = require('./utils');
require('./utils');
describe('Hello world', function () {
it('Runs a test', function () {
// TODO: Write me!
'hello'.should.eql('hello');
});
});