2021-03-02 18:13:24 -08:00
|
|
|
const { expect } = require('@jest/globals');
|
2018-08-07 03:23:28 -07:00
|
|
|
const helloWorld = require('./helloWorld');
|
2017-08-17 11:47:39 -07:00
|
|
|
|
2021-03-02 18:13:24 -08:00
|
|
|
// describe('Hello World', function() {
|
|
|
|
// it('says hello world', function() {
|
|
|
|
// expect(helloWorld()).toEqual('Hello, World!');
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
|
|
|
|
test('says "Hello, World!"', () => {
|
|
|
|
expect(helloWorld()).toBe("Hello, World!");
|
|
|
|
});
|