(args: string[])
| 22 | } |
| 23 | |
| 24 | function forkWatchProcess(args: string[]): void { |
| 25 | const child = forkCli(["--watch", ...args]); |
| 26 | testsCleanup.push(() => child.kill()); |
| 27 | } |
| 28 | |
| 29 | const watchedFile = path.join(__dirname, "./watch/watch.ts"); |
| 30 | const watchedFileOut = watchedFile.replace(".ts", ".lua"); |