Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclarke committed Nov 29, 2024
1 parent d06d882 commit ff73d81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/tests/_globalTeardown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ export default async function globalTeardown() {
);
}

const edbServerProc: ChildProcess = globalThis.edgedbServerProc;
const gelServerProc: ChildProcess = globalThis.gelServerProc;

if (edbServerProc) {
if (gelServerProc) {
console.log("Closing Gel server...");
waits.push(
killProcess(edbServerProc).then(() =>
killProcess(gelServerProc).then(() =>
console.log("...Gel server closed")
)
);
Expand Down

0 comments on commit ff73d81

Please sign in to comment.