mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-22 14:33:51 +00:00
36 lines
655 B
JSON
36 lines
655 B
JSON
{
|
|
src_folders : ["test/web"],
|
|
|
|
test_settings: {
|
|
default: {
|
|
launch_url: 'https://sehugg.github.io/8bitworkshop/'
|
|
},
|
|
|
|
safari: {
|
|
desiredCapabilities : {
|
|
browserName : 'safari',
|
|
alwaysMatch: {
|
|
acceptInsecureCerts: false
|
|
}
|
|
},
|
|
webdriver: {
|
|
port: 4445,
|
|
start_process: true,
|
|
server_path: '/usr/bin/safaridriver-doesntwork'
|
|
}
|
|
},
|
|
|
|
firefox: {
|
|
desiredCapabilities : {
|
|
browserName : 'firefox'
|
|
},
|
|
|
|
webdriver: {
|
|
start_process: true,
|
|
port: 4444,
|
|
server_path: require('geckodriver').path
|
|
}
|
|
}
|
|
}
|
|
}
|