8bitworkshop/nightwatch.json

36 lines
655 B
JSON
Raw Permalink Normal View History

2019-08-31 19:36:50 +00:00
{
2021-05-22 17:00:44 +00:00
src_folders : ["test/web"],
test_settings: {
default: {
2023-11-05 18:12:14 +00:00
launch_url: 'https://sehugg.github.io/8bitworkshop/'
2021-05-22 17:00:44 +00:00
},
2019-08-31 19:36:50 +00:00
2021-05-22 17:00:44 +00:00
safari: {
desiredCapabilities : {
browserName : 'safari',
alwaysMatch: {
acceptInsecureCerts: false
}
},
webdriver: {
port: 4445,
start_process: true,
server_path: '/usr/bin/safaridriver-doesntwork'
}
},
2019-08-31 19:36:50 +00:00
2021-05-22 17:00:44 +00:00
firefox: {
desiredCapabilities : {
browserName : 'firefox'
2019-08-31 19:36:50 +00:00
},
2021-05-22 17:00:44 +00:00
webdriver: {
start_process: true,
port: 4444,
server_path: require('geckodriver').path
2019-08-31 19:36:50 +00:00
}
}
}
}