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', () => {
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 } ) ;
You can’t perform that action at this time.
0 commit comments