aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/sync/conflict.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/sync/conflict.test.ts')
-rw-r--r--src/client/sync/conflict.test.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/sync/conflict.test.ts b/src/client/sync/conflict.test.ts
index 7f86953..211f410 100644
--- a/src/client/sync/conflict.test.ts
+++ b/src/client/sync/conflict.test.ts
@@ -466,7 +466,8 @@ describe("ConflictResolver", () => {
expect(result.decks).toHaveLength(1);
expect(result.decks[0]?.resolution).toBe("server_wins");
- const insertedDeck = await localDeckRepository.findById("non-existent-deck");
+ const insertedDeck =
+ await localDeckRepository.findById("non-existent-deck");
expect(insertedDeck?.name).toBe("Server Deck");
});