Skip to content

Commit

Permalink
Merge pull request #1535 from telefonicaid/task/fix-should-skip
Browse files Browse the repository at this point in the history
Fix skipping at should level
  • Loading branch information
fgalan authored Nov 24, 2023
2 parents b3fda07 + 6b0d1f3 commit 69f2cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/functional-tests-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 69f2cc1

Please sign in to comment.