Nightwatch config

This commit is contained in:
Belen Curcio
2016-12-17 10:53:42 -03:00
parent 927a3fcd83
commit f32f300345
+10 -10
View File
@@ -28,22 +28,22 @@ module.exports = {
'browserName': 'chrome',
'javascriptEnabled': true,
'acceptSslCerts': true,
'webStorageEnabled' : true,
'databaseEnabled' : true,""
'applicationCacheEnabled' : false,
'nativeEvents' : true
'webStorageEnabled': true,
'databaseEnabled': true,
'applicationCacheEnabled': false,
'nativeEvents': true
},
'screenshots' : {
'enabled' : true,
'on_failure' : true,
'on_error' : true,
'path' : './tests/e2e/reports'
'enabled': true,
'on_failure': true,
'on_error': true,
'path': './tests/e2e/reports'
},
'exclude': []
},
'integration': {
'launch_url' : 'http://localhost:3000',
'globals' : {}
'launch_url': 'http://localhost:3000',
'globals': {}
}
}
};