odin-default-js-exercises/01_helloWorld/helloWorld.spec.js

8 lines
183 B
JavaScript

const greeting = require('./helloWorld');
describe('Hello World', function() {
test('says "Hello, World!"', function() {
expect(greeting()).toEqual('Hello, World!');
});
});