We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcd6be3 commit 16cd6c4Copy full SHA for 16cd6c4
1 file changed
test/storage.test.ts
@@ -1442,7 +1442,7 @@ describe("storage", () => {
1442
}
1443
});
1444
1445
- it.each(["EBUSY", "EPERM"] as const)(
+ it.each(["EBUSY", "EPERM", "EAGAIN"] as const)(
1446
"rethrows %s when export cannot read the current storage file",
1447
async (code) => {
1448
const lockedStoragePath = join(testWorkDir, `accounts-${code}.json`);
@@ -1491,7 +1491,7 @@ describe("storage", () => {
1491
},
1492
);
1493
1494
1495
"does not write an export file when %s happens while reading another storage path during a transaction",
1496
1497
const transactionStoragePath = join(
0 commit comments