mirror of
https://github.com/wassname/talk.git
synced 2026-07-05 14:45:40 +08:00
Move logs to test/e2e
This commit is contained in:
+2
-2
@@ -15,8 +15,8 @@ client/coral-framework/graphql/introspection.json
|
||||
*.DS_STORE
|
||||
|
||||
coverage/
|
||||
tests_output/
|
||||
local.log
|
||||
test/e2e/tests_output/
|
||||
test/e2e/bslocal.log
|
||||
|
||||
plugins.json
|
||||
plugins/*
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
const nightwatch_config = {
|
||||
src_folders: './test/e2e/specs/',
|
||||
output_folder: './test/e2e/tests_output',
|
||||
|
||||
selenium : {
|
||||
'start_process': false,
|
||||
|
||||
+4
-1
@@ -10,7 +10,10 @@ try {
|
||||
// Code to start browserstack local before start of test
|
||||
console.log('Connecting local');
|
||||
Nightwatch.bs_local = bs_local;
|
||||
bs_local.start({'key': process.env.BROWSERSTACK_KEY}, function(error) {
|
||||
bs_local.start({
|
||||
'key': process.env.BROWSERSTACK_KEY,
|
||||
'logFile': './test/e2e/bslocal.log'
|
||||
}, function(error) {
|
||||
if (error) {
|
||||
console.error(error);
|
||||
throw error;
|
||||
|
||||
Reference in New Issue
Block a user