Skip to content

Commit fcdcd41

Browse files
committed
test(fuzz): remove unused blockForAuth test
1 parent ae4fa7e commit fcdcd41

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

test/processors/blockForAuth.test.js

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -95,16 +95,7 @@ describe('blockForAuth', () => {
9595
});
9696
});
9797

98-
describe.only('fuzzing', () => {
99-
it('should handle all possible characters in action ID', () => {
100-
fc.assert(
101-
fc.property(fc.string(), (actionId) => {
102-
action.id = actionId;
103-
exec(req, action);
104-
})
105-
);
106-
});
107-
98+
describe('fuzzing', () => {
10899
it('should create a step with correct parameters regardless of action ID', () => {
109100
fc.assert(
110101
fc.asyncProperty(fc.string(), async (actionId) => {
@@ -133,7 +124,10 @@ describe('blockForAuth', () => {
133124
expect(message).to.include(`\x1B[34mhttp://localhost:8080/dashboard/push/${actionId}\x1B[0m`);
134125
expect(message).to.include('🔗 Shareable Link');
135126
expect(result).to.equal(action);
136-
})
127+
}),
128+
{
129+
numRuns: 100
130+
}
137131
);
138132
});
139133
});

0 commit comments

Comments
 (0)