odin-javascript-exercises/01 helloWorld/helloWorld.spec.js
Benjo Kho 55cfb173d8 Order exercise folders
Ordered the exercise folders by placing their numbers in their folder name
2021-08-07 14:21:26 +08:00

7 lines
187 B
JavaScript

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