-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcodecept.conf.js
More file actions
38 lines (33 loc) · 873 Bytes
/
codecept.conf.js
File metadata and controls
38 lines (33 loc) · 873 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
26
27
28
29
30
31
32
33
34
35
36
37
38
exports.config = {
tests: './*_test.js',
output: './output',
helpers: {
WebDriver: {
url: 'http://google.com/ncr',
browser: 'chrome',
host: 'hub.lambdatest.com',
port: 80,
user: process.env.LT_USERNAME,
key: process.env.LT_ACCESS_KEY,
desiredCapabilities: {
name: "[CodeceptJS] Automation Sample",
build: "[CodeceptJS] Automation Sample",
platformName: "Windows 11",
browserName: 'Chrome',
browserVersion: 'dev'
}
},
LTHelper: {
require: 'codeceptjs-lambdatest-service',
user: process.env.LT_USERNAME,
key: process.env.LT_ACCESS_KEY,
updateTestName: true
}
},
include: {
I: './steps_file.js'
},
bootstrap: null,
mocha: {},
name: 'CodeceptJS'
}