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
9019a73a
...
9019a73a02b34320be75a6f09b9e5acd1e53c3f4
authored
2013-03-24 13:57:33 +0100
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
heisenbug fixed by increasing step check interval time (!)
1 parent
7c0343f0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
modules/casper.js
modules/tester.js
tests/suites/casper/steps.js
modules/casper.js
View file @
9019a73
...
...
@@ -119,7 +119,7 @@ var Casper = function Casper(options) {
stepTimeout
:
null
,
timeout
:
null
,
verbose
:
false
,
retryTimeout
:
1
0
,
retryTimeout
:
2
0
,
waitTimeout
:
5000
};
// options
...
...
modules/tester.js
View file @
9019a73
...
...
@@ -1368,7 +1368,7 @@ Tester.prototype.runSuites = function runSuites() {
self
.
runTest
(
testFiles
[
self
.
currentSuiteNum
]);
self
.
currentSuiteNum
++
;
}
},
1
0
,
this
);
},
2
0
,
this
);
};
/**
...
...
tests/suites/casper/steps.js
View file @
9019a73
...
...
@@ -47,7 +47,6 @@ casper.test.begin('eachThen() tests', 1, function(test) {
});
casper
.
run
(
function
()
{
console
.
log
(
'PLOP!!!'
);
test
.
assertEquals
(
received
,
[
1
,
2
,
3
],
'Casper.eachThen() passes item to step data'
);
test
.
done
();
...
...
Please
register
or
sign in
to post a comment