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

6 lines
137 B
JavaScript
Raw Normal View History

const helloWorld = require('./helloWorld');
2017-08-17 18:47:39 +00:00
2021-03-09 11:12:25 +00:00
test('says "Hello, World!"', function() {
expect(helloWorld()).toBe("Hello, World!");
2021-05-12 09:38:10 +00:00
});