From 5e9748de251a9ce07cc945818f958212dbb0a6f5 Mon Sep 17 00:00:00 2001 From: Bernardo Guerreiro Date: Wed, 24 Jul 2024 16:16:50 +0100 Subject: [PATCH] test(cli): try to fix custom plugin test --- packages/artillery/package.json | 2 +- packages/artillery/test/cli/custom-plugin.test.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/artillery/package.json b/packages/artillery/package.json index 4471fbdb48..11508e4cf9 100644 --- a/packages/artillery/package.json +++ b/packages/artillery/package.json @@ -46,7 +46,7 @@ "test:unit": "tap --timeout=420 test/unit/*.test.js", "test:acceptance": "tap --timeout=420 test/cli/*.test.js && bash test/lib/run.sh && tap --timeout=420 test/publish-metrics/**/*.test.js && tap --timeout=420 test/integration/**/*.test.js", "test": " npm run test:unit && npm run test:acceptance", - "test:windows": "npm run test:unit && bash test/lib/run.sh && tap --timeout=420 test/publish-metrics/**/*.test.js && tap --timeout=420 test/integration/**/*.test.js && tap --timeout=420 test/cli/custom-plugin.test.js", + "test:windows": "tap --timeout=420 test/cli/custom-plugin.test.js", "test:aws": "tap --timeout=4200 test/cloud-e2e/**/*.test.js", "test:aws:ci": "tap --timeout=4200", "test:aws:windows": "tap --timeout=420 test/cloud-e2e/fargate/*.test.js --grep \"Run simple-bom\"", diff --git a/packages/artillery/test/cli/custom-plugin.test.js b/packages/artillery/test/cli/custom-plugin.test.js index 1cebae2f1d..7772a051df 100644 --- a/packages/artillery/test/cli/custom-plugin.test.js +++ b/packages/artillery/test/cli/custom-plugin.test.js @@ -22,6 +22,7 @@ let server; let overrides; before(async () => { + console.log(`Using Artillery from ${A9}`); await $`${A9} -V`; });