Skip to content

Commit

Permalink
smoke - fix compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero authored and deepak1556 committed Nov 18, 2021
1 parent 11953d7 commit 3c8e0dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/automation/src/playwrightDriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export async function launch(userDataDir: string, _workspacePath: string, codeSe
async function teardown(): Promise<void> {
if (server) {
try {
await new Promise<void>((c, e) => kill(server!.pid, err => err ? e(err) : c()));
await new Promise<void>((c, e) => kill(server!.pid!, err => err ? e(err) : c()));
} catch {
// noop
}
Expand Down

0 comments on commit 3c8e0dc

Please sign in to comment.