8bitworkshop/nightwatch.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
}
}
}
}