From 7b7f648ce798fcc33a3346d1a2c0f19472a03cb6 Mon Sep 17 00:00:00 2001 From: "Mr. Ivan" Date: Thu, 8 Dec 2016 10:19:46 -0600 Subject: [PATCH] Change assertion message for task 1 - On the codeschool website it asks students to add their name to the title element --- test/index_test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index_test.js b/test/index_test.js index 071f5c4..e381a3f 100755 --- a/test/index_test.js +++ b/test/index_test.js @@ -21,7 +21,7 @@ describe('Your HTML Page', function() { assert.equal(window.$('title').length, 1, 'Make sure to create a `title` element.'); }); - it('should have a title with the text "Code School" @title', function() { + it('should have a title that contains your name @title', function() { assert.notEqual(window.$('title').text(), '', 'Make sure to set the content of the `title` element to your Code School username.'); });