From e4f9675628fa8c6a0189213faf96043c5140b684 Mon Sep 17 00:00:00 2001 From: Mohammed Sobhi <63759344+mohammedsobhi@users.noreply.github.com> Date: Wed, 22 Sep 2021 19:02:34 +0200 Subject: [PATCH] fix 'says hello world' in README.md change 'says hello world' to 'says "Hello, World!" ' to be identical to the code in the (helloWorld.spec.js) file. --- 01_helloWorld/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_helloWorld/README.md b/01_helloWorld/README.md index e79ae19..17f7110 100644 --- a/01_helloWorld/README.md +++ b/01_helloWorld/README.md @@ -13,7 +13,7 @@ Let's look at the spec file first: const helloWorld = require('./helloWorld'); describe('Hello World', function() { - test('says hello world', function() { + test('says "Hello, World!"', function() { expect(helloWorld()).toEqual('Hello, World!'); }); });