From bb61927a3f1eaf2cd6ec14b6824babe4c46a4c1a Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Wed, 15 Apr 2020 10:09:18 +0200 Subject: [PATCH] test: remove headless from e2e for transitions --- e2e/nightwatch.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/nightwatch.config.js b/e2e/nightwatch.config.js index 50df2dc2..75a974e4 100644 --- a/e2e/nightwatch.config.js +++ b/e2e/nightwatch.config.js @@ -1,5 +1,6 @@ // yarn nightwatch -e chrome,safari,firefox +/** @type {import('nightwatch').NightwatchOptions} */ module.exports = { src_folders: ['e2e/specs'], output_folder: 'e2e/reports', @@ -36,7 +37,7 @@ module.exports = { chromeOptions: { // https://github.com/nightwatchjs/nightwatch/releases/tag/v1.1.12 w3c: false, - args: ['window-size=1280,800', 'headless'], + args: ['window-size=1280,800'], }, }, }, -- 2.47.2