Skip to content

Commit 452fb86

Browse files
committed
chore: switch from vitest to node:test
1 parent 9e7f013 commit 452fb86

File tree

7 files changed

+83
-1564
lines changed

7 files changed

+83
-1564
lines changed

eslint.config.mjs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,18 @@ export default defineConfig(
5050
},
5151
],
5252
"@typescript-eslint/switch-exhaustiveness-check": "error",
53+
"@typescript-eslint/no-floating-promises": [
54+
"error",
55+
{
56+
allowForKnownSafeCalls: [
57+
{
58+
from: "package",
59+
name: ["describe", "it"],
60+
package: "node:test",
61+
},
62+
],
63+
},
64+
],
5365
},
5466
},
5567
);

0 commit comments

Comments
 (0)