js lint compliant, see travis #917
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -61,7 +61,7 @@ casper.test.begin('Common assertions tests', 46, function(test) { | ... | @@ -61,7 +61,7 @@ casper.test.begin('Common assertions tests', 46, function(test) { |
61 | test.assertTitleMatches(/test index/, 'Tester.assertTitleMatches() works as expected [alias]'); | 61 | test.assertTitleMatches(/test index/, 'Tester.assertTitleMatches() works as expected [alias]'); |
62 | test.assertType("plop", "string", "Tester.assertType() works as expected"); | 62 | test.assertType("plop", "string", "Tester.assertType() works as expected"); |
63 | // we need a constructor and an object | 63 | // we need a constructor and an object |
64 | function Cow(){}; var daisy = new Cow(); | 64 | function Cow(){} var daisy = new Cow(); |
65 | test.assertInstanceOf(daisy, Cow, "Tester.assertInstanceOf() works as expected"); | 65 | test.assertInstanceOf(daisy, Cow, "Tester.assertInstanceOf() works as expected"); |
66 | test.assertUrlMatch(/index\.html$/, "Tester.assertUrlMatch() works as expected"); | 66 | test.assertUrlMatch(/index\.html$/, "Tester.assertUrlMatch() works as expected"); |
67 | test.assertUrlMatches(/index\.html$/, "Tester.assertUrlMatches() works as expected [alias]"); | 67 | test.assertUrlMatches(/index\.html$/, "Tester.assertUrlMatches() works as expected [alias]"); | ... | ... |
-
Please register or sign in to post a comment