From 6b0d1f32ecf555f1b880eb428c42ed26fe939e3d Mon Sep 17 00:00:00 2001 From: mapedraza <40356341+mapedraza@users.noreply.github.com> Date: Fri, 24 Nov 2023 16:40:15 +0100 Subject: [PATCH] Fix skipping at should level --- test/functional/functional-tests-runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/functional-tests-runner.js b/test/functional/functional-tests-runner.js index 5a04ac759..4a0d6d0db 100755 --- a/test/functional/functional-tests-runner.js +++ b/test/functional/functional-tests-runner.js @@ -88,7 +88,7 @@ describe('FUNCTIONAL TESTS AUTO', function () { testCase.should.forEach((should) => { it(should.shouldName, async function () { - if (testCase.skip && testUtils.checkSkip(testCase.skip, 'lib')) { + if (should.skip && testUtils.checkSkip(should.skip, 'lib')) { this.skip(); } // Skip the test if the transport is specified (IoTA Lib does not support any transport)