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

8 lines
189 B
JavaScript

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