Skip to content

Commit 147bb36

Browse files
Update 08-add-to-window.problem.ts
As far as I understood, the test message itself is not a part of the exercise, so encountering it upon opening the exercise can be confusing.
1 parent 8e0f642 commit 147bb36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/02-globals/08-add-to-window.problem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Equal, Expect } from "../helpers/type-utils";
1010
* interface to add a makeGreeting function
1111
*/
1212

13-
window.makeGreeting = () => "Hello!";
13+
window.makeGreeting = () => "Hello, world!";
1414

1515
it("Should let you call makeGreeting from the window object", () => {
1616
expect(window.makeGreeting()).toBe("Hello, world!");

0 commit comments

Comments
 (0)