-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwdio.no-specs.conf.js
45 lines (43 loc) · 1.07 KB
/
wdio.no-specs.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
export const config = {
capabilities: [
{
browserName: "chrome",
browserVersion: "stable",
"goog:chromeOptions": {
args: ["headless", "disable-gpu", "window-size=1024,768"],
},
},
],
logLevel: "warn",
framework: "mocha",
reporters: ["spec"],
waitforTimeout: 5000,
baseUrl: "http://localhost:4567",
services: [
[
"qunit",
{
paths: [
"examples/qunit-v1.18/qunit-all.html",
"examples/qunit-v1.23/qunit-all.html",
"examples/qunit-v2.3/qunit-all.html",
"examples/qunit-v2.22/qunit-all.html",
"https://ui5.sap.com/test-resources/sap/m/demokit/cart/webapp/test/unit/unitTests.qunit.html",
"examples/qunit-preconfiguration/qunit-flat-config.html",
"examples/qunit-preconfiguration/qunit-object-config.html",
"examples/qunit-iframes/qunit-iframes.html",
],
},
],
[
"static-server",
{
folders: [{ mount: "/", path: "./" }],
},
],
],
mochaOpts: {
ui: "bdd",
timeout: 60000,
},
};