Files

8 lines
198 B
JavaScript
Raw Permalink Normal View History

2023-02-01 18:53:54 -05:00
const helloWorld = require('./helloWorld-solution');
2022-02-20 14:07:44 -05:00
2023-02-01 18:53:54 -05:00
describe('Hello World', function () {
2023-01-21 12:53:41 -05:00
test('says "Hello, World!"', function () {
2023-02-01 18:53:54 -05:00
expect(helloWorld()).toEqual('Hello, World!');
2023-01-21 12:53:41 -05:00
});
2022-02-20 14:07:44 -05:00
});