File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -60,14 +60,6 @@ export type ItOptions = ExecOptions & {
6060}
6161
6262type ExecOptions = {
63- /**
64- * Callback that runs after the project has been scaffolded but before installing node modules or running tests.
65- */
66- onAfterScaffold ?: ( ) => void | Promise < void >
67- /**
68- * Callback that runs after the execution has ended.
69- */
70- onAfterExec ?: ( ) => void | Promise < void >
7163 /**
7264 * If set, `docker exec` will be used to run this test. Requires Docker.
7365 */
@@ -950,8 +942,6 @@ const systemTests = {
950942 await settings . write ( e2ePath , ctx . settings )
951943 }
952944
953- if ( options . onAfterScaffold ) await options . onAfterScaffold ( )
954-
955945 let stdout = ''
956946 let stderr = ''
957947
@@ -1092,8 +1082,6 @@ const systemTests = {
10921082 sp . on ( 'exit' , resolve )
10931083 } )
10941084
1095- if ( options . onAfterExec ) await options . onAfterExec ( )
1096-
10971085 await copy ( )
10981086
10991087 return exit ( exitCode )
You can’t perform that action at this time.
0 commit comments