Remove deprecated parameter in Casper unread test

You used to have to call casper.test.done(N) where N was the number of
tests run. This is no longer required and is deprecated in CasperJS 1.1.

(imported from commit 0de9ecb1930cbce416fa02c24a882e926cdc8e87)
This commit is contained in:
Scott Feeney 2013-08-21 16:28:33 -04:00 committed by Steve Howell
parent f41f042127
commit d4661b22c8
1 changed files with 1 additions and 1 deletions

View File

@ -101,5 +101,5 @@ casper.then(function () {
// Run the above queued actions.
casper.run(function () {
casper.test.done(3);
casper.test.done();
});