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

5 lines
136 B
JavaScript

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