Skip to content

Commit 3d7b388

Browse files
committed
fix: comments
1 parent 7a5d426 commit 3d7b388

3 files changed

Lines changed: 2 additions & 21 deletions

File tree

app/dev-dist/sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ define(['./workbox-c6a197bf'], (function (workbox) { 'use strict';
8282
"revision": "3ca0b8505b4bec776b69afdba2768812"
8383
}, {
8484
"url": "index.html",
85-
"revision": "0.irefiomf9es"
85+
"revision": "0.7cbehiuvdvs"
8686
}], {});
8787
workbox.cleanupOutdatedCaches();
8888
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {

app/e2e/helpers/node-client.ts

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -225,22 +225,3 @@ export async function injectRealTokens(
225225
);
226226
}
227227

228-
/**
229-
* Inject the group-id + messenger-name that the curb app needs to skip
230-
* the workspace-selection step and land directly on the home page.
231-
*/
232-
export async function injectWorkspaceState(
233-
page: Page,
234-
opts: {
235-
groupId: string;
236-
messengerName: string;
237-
},
238-
) {
239-
await page.addInitScript(
240-
({ groupId, messengerName }) => {
241-
localStorage.setItem("group-id", JSON.stringify(groupId));
242-
localStorage.setItem("messenger-name", JSON.stringify(messengerName));
243-
},
244-
opts,
245-
);
246-
}

app/e2e/helpers/rpc-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export function getEnv(): IntegrationEnv {
147147
/** True when the single-node minimum env is present. */
148148
export function envAvailable(): boolean {
149149
const e = getEnv();
150-
return !!(e.nodeUrl && e.accessToken && e.contextId && e.memberKey);
150+
return !!(e.nodeUrl && e.accessToken && e.groupId && e.contextId && e.memberKey);
151151
}
152152

153153
/** True when both nodes are configured for multi-user tests. */

0 commit comments

Comments
 (0)