From c6ff7c51f062d6088dbe8535fdf15fc786d0d5fd Mon Sep 17 00:00:00 2001 From: Tommy Date: Fri, 22 Oct 2021 13:55:48 +0100 Subject: [PATCH] setting build path for running the binary --- tauri-wallet/webdriver/wdio.conf.cjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tauri-wallet/webdriver/wdio.conf.cjs b/tauri-wallet/webdriver/wdio.conf.cjs index 9475c7e62e..4da763cc4d 100644 --- a/tauri-wallet/webdriver/wdio.conf.cjs +++ b/tauri-wallet/webdriver/wdio.conf.cjs @@ -2,7 +2,7 @@ const os = require("os"); const path = require("path"); const { spawn, spawnSync } = require("child_process"); //insert path to binary -const nym_path = "../target/input/executable"; +const nym_path = "../target/release/nym_wallet"; exports.config = { //run sequentially, as using one default user may cause issues for parallel test runs for now @@ -55,7 +55,7 @@ exports.config = { reporters: [['allure', { outputDir: 'allure-results', disableWebdriverStepsReporting: true, - disableWebdriverScreenshotsReporting: false, + disableWebdriverScreenshotsReporting: true, }]], // this is documentented in the readme - you will need to build the project first