1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2025-01-11 08:30:02 +00:00
8bitworkshop/nightwatch.json

36 lines
655 B
JSON
Raw Normal View History

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