Skip to content

Commit

Permalink
Merge pull request #785 from telefonicaid/task/fix-skip-tests
Browse files Browse the repository at this point in the history
Fix skipping tests at should level
  • Loading branch information
fgalan committed Nov 24, 2023
2 parents 236411c + 4397513 commit 7bc68f8
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 @@ -100,7 +100,7 @@ describe('FUNCTIONAL TESTS', function () {

testCase.should.forEach((should) => {
it(should.shouldName, async function () {
if (testCase.skip && testUtils.checkSkip(testCase.skip, 'json')) {
if (should.skip && testUtils.checkSkip(should.skip, 'json')) {
this.skip();
}

Expand Down

0 comments on commit 7bc68f8

Please sign in to comment.