Skip to content

Commit ce098c4

Browse files
authored
cucumber: fix miissing skip in browsers (#919)
1 parent 9ef4a48 commit ce098c4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/cucumber/steps/steps.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const assert = require('assert');
44
const fs = require('fs');
55
const path = require('path');
66

7-
const { skip } = require('node:test');
87
const algosdk = require('../../../src/index');
98
const nacl = require('../../../src/nacl/naclWrappers');
109

@@ -1963,10 +1962,10 @@ module.exports = function getSteps(options) {
19631962

19641963
Then(
19651964
'the parsed Get Block response should have heartbeat address {string}',
1965+
// eslint-disable-next-line consistent-return
19661966
(hbAddress) => {
19671967
if (responseFormat === 'json') {
19681968
// cannot properly decode json response (base32 addresses) into transaction objects so skip
1969-
skip();
19701969
return;
19711970
}
19721971
const enc = anyBlockResponse.block.txns[0].txn;

0 commit comments

Comments
 (0)