8000 Merge pull request #156 from TheOdinProject/fix/hello-world-exercise · unconnect/javascript-exercises@9c3bcb4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9c3bcb4

Browse files
author
xandora
authored
Merge pull request TheOdinProject#156 from TheOdinProject/fix/hello-world-exercise
2 parents 778096f + f8a2928 commit 9c3bcb4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

helloWorld/helloWorld.spec.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
const helloWorld = require('./helloWorld');
22

3-
test('says "Hello, World!"', function() {
4-
expect(helloWorld()).toBe("Hello, World!");
3+
describe('Hello World', function() {
4+
test('says "Hello, World!"', function() {
5+
expect(helloWorld()).toEqual('Hello, World!');
6+
});
57
});

0 commit comments

Comments
 (0)
0