Skip to content

Commit 71a0fe8

Browse files
committed
fix(test): explicitly disable stateCache in runtime checkpoint tests
1 parent c6f64d7 commit 71a0fe8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/runtime/deno/checkpoint.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import SchemaUnsupportedError from "../../../src/domain/errors/SchemaUnsupported
55
denoRuntimeTest("checkpoint: creates checkpoint with valid SHA", async () => {
66
const repo = await createTestRepo("ckpt");
77
try {
8-
const graph = await repo.openGraph("test", "w1");
8+
const graph = await repo.openGraph("test", "w1", { stateCache: null });
99

1010
await (await graph.createPatch()).addNode("n1").commit();
1111
await (await graph.createPatch()).addNode("n2").commit();
@@ -21,7 +21,7 @@ denoRuntimeTest("checkpoint: creates checkpoint with valid SHA", async () => {
2121
denoRuntimeTest("checkpoint: materializeAt rejects session-backed runtime checkpoints", async () => {
2222
const repo = await createTestRepo("ckpt-at");
2323
try {
24-
const graph = await repo.openGraph("test", "w1");
24+
const graph = await repo.openGraph("test", "w1", { stateCache: null });
2525

2626
await (await graph.createPatch()).addNode("n1").commit();
2727
await graph.materialize();

0 commit comments

Comments
 (0)