File tree Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -95,16 +95,7 @@ describe('blockForAuth', () => {
95
95
} ) ;
96
96
} ) ;
97
97
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' , ( ) => {
108
99
it ( 'should create a step with correct parameters regardless of action ID' , ( ) => {
109
100
fc . assert (
110
101
fc . asyncProperty ( fc . string ( ) , async ( actionId ) => {
@@ -133,7 +124,10 @@ describe('blockForAuth', () => {
133
124
expect ( message ) . to . include ( `\x1B[34mhttp://localhost:8080/dashboard/push/${ actionId } \x1B[0m` ) ;
134
125
expect ( message ) . to . include ( '🔗 Shareable Link' ) ;
135
126
expect ( result ) . to . equal ( action ) ;
136
- } )
127
+ } ) ,
128
+ {
129
+ numRuns : 100
130
+ }
137
131
) ;
138
132
} ) ;
139
133
} ) ;
You can’t perform that action at this time.
0 commit comments