Skip to content

Commit 1347ba7

Browse files
committed
remove unrelated changes
1 parent 5cb1f2c commit 1347ba7

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

system-tests/lib/system-tests.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,6 @@ export type ItOptions = ExecOptions & {
6060
}
6161

6262
type 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)

0 commit comments

Comments
 (0)