Refactor integration tests to use main entry point

This commit is contained in:
Asher
2021-05-05 12:20:38 -05:00
parent 20e70cfa05
commit a882be5748
5 changed files with 17 additions and 20 deletions

View File

@ -24,7 +24,8 @@ async function entry(): Promise<void> {
if (isChild(wrapper)) {
const args = await wrapper.handshake()
wrapper.preventExit()
return runCodeServer(args)
await runCodeServer(args)
return
}
const cliArgs = parse(process.argv.slice(2))