Skip to content

Commit 3f8ec99

Browse files
committed
test: fix WorkspaceContext test for new options param
1 parent c829e4f commit 3f8ec99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browser/contexts/WorkspaceContext.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ describe("WorkspaceContext", () => {
163163
result = await ctx().createWorkspace("/gamma", "feature", "main");
164164
});
165165

166-
expect(workspaceApi.create).toHaveBeenCalledWith("/gamma", "feature", "main", undefined);
166+
expect(workspaceApi.create).toHaveBeenCalledWith("/gamma", "feature", "main", undefined, undefined);
167167
expect(projectsApi.list).toHaveBeenCalled();
168168
expect(result!.workspaceId).toBe("ws-new");
169169
expect(result!.projectPath).toBe("/gamma");

0 commit comments

Comments
 (0)