Reduce the amount of phantomjs runs in travis.yml and tweak for 100% coverage in amd tests.

This commit is contained in:
John-David Dalton
2013-12-08 12:51:51 -08:00
parent 3a5ff851af
commit 18b6d51644
2 changed files with 22 additions and 17 deletions

View File

@@ -3843,11 +3843,13 @@
args2 = (function() { return arguments; }(1, 2, 3)),
args3 = (function() { return arguments; }(1, 2));
strictEqual(_.isEqual(args1, args2), true);
if (!isPhantomPage) {
strictEqual(_.isEqual(args1, args2), true);
strictEqual(_.isEqual(args1, args3), false);
} else {
skipTest(2);
}
else {
skipTest();
}
});