From 860e1fa5a70a5a13ea09922b2b58625d935e6346 Mon Sep 17 00:00:00 2001 From: Matt Clarkson Date: Tue, 24 May 2016 11:58:46 +0100 Subject: [PATCH] Reorder Unix browsers --- lib/local/platform/unix.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/local/platform/unix.js b/lib/local/platform/unix.js index bd49c89..36de419 100644 --- a/lib/local/platform/unix.js +++ b/lib/local/platform/unix.js @@ -1,12 +1,6 @@ var path = require('path'); module.exports = { - chrome: { - pathQuery: 'which chromium-browser chromium google-chrome google-chrome-stable || true', - process: 'chrom(e|ium( --(?!type)[^=]+=[^ ]+)*)', - opensTab: true, - args: ['--no-first-run'] - }, firefox: { pathQuery: 'which firefox', process: 'firefox', @@ -19,6 +13,12 @@ module.exports = { pathQuery: 'which opera', process: 'opera' }, + chrome: { + pathQuery: 'which chromium-browser chromium google-chrome google-chrome-stable || true', + process: 'chrom(e|ium( --(?!type)[^=]+=[^ ]+)*)', + opensTab: true, + args: ['--no-first-run'] + }, phantom: { pathQuery: 'which phantomjs', process: 'phantomjs',