add gstack 2 parity and lifecycle gates

This commit is contained in:
Sinabina
2026-07-17 11:08:32 -07:00
parent b6572ebbb7
commit 9919c4cdd3
212 changed files with 29098 additions and 3845 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ async function startMockServer(): Promise<MockServer> {
port: server.port,
requests,
setResponse(status: number, body: string) { response = { status, body }; },
async stop() { server.stop(true); },
async stop() { await server.stop(true); },
};
}