From b7621c3b16cf7d5539f05336a827e1b32d95e6ac Mon Sep 17 00:00:00 2001 From: Milos Djermanovic Date: Fri, 8 Sep 2023 21:01:11 +0200 Subject: [PATCH] chore: remove browser test from `npm test` (#17550) --- Makefile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.js b/Makefile.js index 528fd5aa1e7..7978369c0b0 100644 --- a/Makefile.js +++ b/Makefile.js @@ -641,7 +641,9 @@ target.wdio = () => { target.test = function() { target.checkRuleFiles(); target.mocha(); - target.wdio(); + + // target.wdio(); // Temporarily disabled due to problems on Jenkins + target.fuzz({ amount: 150, fuzzBrokenAutofixes: false }); target.checkLicenses(); };