Skip to content

Commit

Permalink
Merge pull request meteor#9650 from meteor/stop-running-test-packages…
Browse files Browse the repository at this point in the history
…-twice

Stop running test-packages twice in PhantomJS.
  • Loading branch information
benjamn authored Feb 8, 2018
2 parents 640011a + c27b741 commit 4b1c921
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/test-in-console/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
summary: "Run tests noninteractively, with results going to the console.",
version: '1.2.1'
version: '1.2.2'
});

Package.onUse(function (api) {
Expand Down
3 changes: 2 additions & 1 deletion packages/test-in-console/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ var system = require("system");
var platform = system.args[1] || "local";
var platformUrl = system.env.URL + platform;
var testUrls = [
// Additional application URLs can be added here to re-run tests in
// PhantomJS with different query parameter-based configurations.
platformUrl,
platformUrl + "?force_sockjs=1",
];

function runNextUrl() {
Expand Down

0 comments on commit 4b1c921

Please sign in to comment.