Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 09bea8e

Browse files
committed
ci: only run chrome in ci
1 parent c914c08 commit 09bea8e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

config/targets.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
"use-strict";
22

33
module.exports = {
4-
browsers: ["last 2 Firefox versions", "last 2 Chrome versions"],
4+
browsers: [
5+
"last 2 Firefox versions",
6+
"last 2 Chrome versions",
7+
"last 1 Safari versions",
8+
],
59
};

testem.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
disable_watching: true,
66
parallel: -1,
77
launch_in_dev: [],
8-
launch_in_ci: ["chrome", "firefox"],
8+
launch_in_ci: ["chrome"],
99
browser_start_timeout: 120,
1010
browser_args: {
1111
Chrome: {
@@ -20,7 +20,6 @@ module.exports = {
2020
"--remote-debugging-port=9222",
2121
"--window-size=1440,900",
2222
].filter(Boolean),
23-
firefox: ["--headless"],
2423
},
2524
},
2625
};

0 commit comments

Comments
 (0)