mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-10-31 23:09:49 +00:00
36 lines
642 B
JSON
36 lines
642 B
JSON
{
|
|
src_folders : ["test/web"],
|
|
|
|
test_settings: {
|
|
default: {
|
|
launch_url: 'https://8bitworkshop.com',
|
|
},
|
|
|
|
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
|
|
}
|
|
}
|
|
}
|
|
}
|