forked from kawanet/bufferish
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzuul.config.js
More file actions
25 lines (23 loc) · 745 Bytes
/
Copy pathzuul.config.js
File metadata and controls
25 lines (23 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// zuul.config.js
var noBuffer = !!process.env.NO_BUFFER;
var filename = noBuffer ? "dist/bufferish.min.js" : "dist/bufferish.buffer.js";
module.exports = {
sauce_username: "bufferish",
sauce_key: "19ce1f89-5564-4d4a-aabb-a350002349b1",
name: "bufferish",
ui: "mocha-bdd",
html: "test/zuul/zuul.html",
concurrency: 3,
browser_retries: 2,
browser_output_timeout: 180,
browser_open_timeout: 180,
scripts: [filename],
browsers: [
{name: "ie", version: "9..latest"},
{name: "chrome", version: "latest"},
{name: "firefox", version: "46"},
{name: "safari", version: "7..latest"},
{name: "iphone", version: ["7.1", "8.4", "9.3..latest"]},
{name: "android", version: ["4.1", "4.4", "5.1..latest"]}
]
};