Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
73265252
...
732652521c2ba8544b777fc59ded900d1b100d04
authored
2012-12-18 18:55:38 +0100
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixed tests for Tester.assertFalsy()
1 parent
6893eb57
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
tests/suites/tester.js
tests/suites/tester.js
View file @
7326525
...
...
@@ -47,7 +47,7 @@ casper.thenOpen('tests/site/index.html', function() {
t
.
assertTruthy
(
'1'
,
'Tester.assertTruthy() works as expected'
);
t
.
comment
(
'Tester.assertFalsy()'
);
t
.
assertFalsy
(
'
0
'
,
'Tester.assertFalsy() works as expected'
);
t
.
assertFalsy
(
''
,
'Tester.assertFalsy() works as expected'
);
t
.
comment
(
'Tester.assertNot()'
);
t
.
assertNot
(
false
,
'Tester.assertNot() works as expected'
);
...
...
Please
register
or
sign in
to post a comment