mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-14 04:06:07 +09:00
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.
This commit is contained in:
@@ -13,7 +13,7 @@ Let's look at the spec file first:
|
|||||||
const helloWorld = require('./helloWorld');
|
const helloWorld = require('./helloWorld');
|
||||||
|
|
||||||
describe('Hello World', function() {
|
describe('Hello World', function() {
|
||||||
test('says hello world', function() {
|
test('says "Hello, World!"', function() {
|
||||||
expect(helloWorld()).toEqual('Hello, World!');
|
expect(helloWorld()).toEqual('Hello, World!');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user