diff --git a/helloWorld/helloWorld.spec.js b/helloWorld/helloWorld.spec.js index 7f9198d..e6030fd 100644 --- a/helloWorld/helloWorld.spec.js +++ b/helloWorld/helloWorld.spec.js @@ -1,5 +1,7 @@ const helloWorld = require('./helloWorld'); -test('says "Hello, World!"', function() { - expect(helloWorld()).toBe("Hello, World!"); +describe('Hello World', function() { + test('says "Hello, World!"', function() { + expect(helloWorld()).toEqual('Hello, World!'); + }); });