Skip to content

Commit 7730923

Browse files
committedDec 6, 2024·
test: add missing await
1 parent dae5d1b commit 7730923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/drivers/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function testDriver(opts: TestOptions) {
8282

8383
it("serialize (error for non primitives)", async () => {
8484
class Test {}
85-
expect(
85+
await expect(
8686
ctx.storage.setItem("/data/badvalue.json", new Test())
8787
).rejects.toThrow("[unstorage] Cannot stringify value!");
8888
});

0 commit comments

Comments
 (0)
Please sign in to comment.