Skip to content

Commit bc80d43

Browse files
Remove unused setRuntimeWorkspaceKeyForTests helper
Co-authored-by: Cameron Cooke <web@cameroncooke.com>
1 parent 4b9e189 commit bc80d43

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

src/utils/runtime-instance.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,3 @@ export function setRuntimeInstanceForTests(instance: RuntimeInstance | null): vo
5252
runtimeInstance = instance;
5353
runtimeWorkspaceKey = instance?.workspaceKey ?? null;
5454
}
55-
56-
export function setRuntimeWorkspaceKeyForTests(workspaceKey: string | null): void {
57-
if (workspaceKey === null) {
58-
runtimeWorkspaceKey = null;
59-
runtimeInstance = null;
60-
return;
61-
}
62-
63-
configureRuntimeWorkspaceKey(workspaceKey);
64-
}

0 commit comments

Comments
 (0)