4efb36f3aa
This reverts commit 7a001e0fdb
.
12 lines
329 B
JavaScript
12 lines
329 B
JavaScript
const { expect } = require('@jest/globals');
|
|
const helloWorld = require('./helloWorld');
|
|
|
|
// describe('Hello World', function() {
|
|
// it('says hello world', function() {
|
|
// expect(helloWorld()).toEqual('Hello, World!');
|
|
// });
|
|
// });
|
|
|
|
test('says "Hello, World!"', () => {
|
|
expect(helloWorld()).toBe("Hello, World!");
|
|
});
|