Also update the actual spec file.

This commit is contained in:
Michael Frank 2021-05-29 07:55:43 +12:00
parent 50ce8d002c
commit f8a2928882
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ const helloWorld = require('./helloWorld');
describe('Hello World', function() {
test('says "Hello, World!"', function() {
expect(helloWorld()).toBe('Hello, World!');
expect(helloWorld()).toEqual('Hello, World!');
});
});