Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Change the default npm run test behavior to run Nightly instead of Release #3008

Merged
merged 1 commit into from
Jun 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Environmental variables that help control this test:

FIREFOX_CHANNEL = empty (default RELEASE)
FIREFOX_CHANNEL = empty (default NIGHTLY)
NIGHTLY
AURORA (often Developer Edition)
BETA
Expand Down Expand Up @@ -74,7 +74,7 @@ callback();

function getDriver() {
const profile = new firefox.Profile();
let channel = process.env.FIREFOX_CHANNEL || "RELEASE";
let channel = process.env.FIREFOX_CHANNEL || "NIGHTLY";
if (!(channel in firefox.Channel)) {
throw new Error(`Unknown channel: "${channel}"`);
}
Expand Down