We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddbf8b0 commit 477951fCopy full SHA for 477951f
apps/web/__tests__/unit/loom-import.test.ts
@@ -137,8 +137,8 @@ describe("importFromLoom", () => {
137
it("removes a stale Loom row and recreates it with the Cap video id", async () => {
138
whereMock
139
.mockResolvedValueOnce([{ importedVideoId: "stale-row", videoId: null }])
140
- .mockResolvedValueOnce([{ id: "bucket-1" }])
141
- .mockResolvedValueOnce(undefined);
+ .mockResolvedValueOnce(undefined)
+ .mockResolvedValueOnce([{ id: "bucket-1" }]);
142
143
const fetchMock = vi.mocked(fetch);
144
fetchMock.mockImplementation(async (input) => {
0 commit comments