Merge pull request #186 from mohammedsobhi/patch-1

fix 'says hello world' in README.md
This commit is contained in:
Tatiana 2021-09-22 10:12:27 -07:00 committed by GitHub
commit 6b0e0e55e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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!');
});
});