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

8 lines
206 B
JavaScript
Raw Normal View History

2022-02-20 19:07:44 +00:00
const helloWorld = require('./helloWorld-solution');
describe('Hello World', function () {
test('says "Hello, World!"', function () {
expect(helloWorld()).toEqual('Hello, World!');
});
});