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

6 lines
137 B
JavaScript

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