forked from jupyter/declarativewidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwct.conf.js
45 lines (45 loc) · 1.04 KB
/
wct.conf.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
module.exports = {
plugins: {
local: {
browsers: ['chrome']
},
sauce: {
disabled: true,
browsers: [
{
browserName: "firefox",
platform: "Linux"
},
{
browserName: "safari",
platform: "OS X 10.10"
},
{
browserName: "chrome",
platform: "Windows 10"
},
{
browserName: "internet explorer",
platform: "Windows 8.1"
}
// Don't run MicrosoftEdge until Windows 10 Anniversary update
// is available as the nested template test fails
// in urth-core-bind before that update.
// {
// browserName: "MicrosoftEdge",
// platform: "Windows 10"
// }
]
}
},
webserver: {
pathMappings: [
{'/elements': 'bower_components'}
],
urlPrefix: ''
}
};