Skip to content

Commit c360028

Browse files
authored
Remove requirement to await node:test functions (#195)
1 parent 421d04a commit c360028

File tree

4 files changed

+1347
-1169
lines changed

4 files changed

+1347
-1169
lines changed

index.mjs

+33
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,39 @@ const tsConfigurations = [
381381
'@typescript-eslint/no-unsafe-return': 'off',
382382
'@typescript-eslint/restrict-template-expressions': 'off',
383383
'@typescript-eslint/explicit-module-boundary-types': 'off',
384+
'@typescript-eslint/no-floating-promises': [
385+
'error',
386+
{
387+
allowForKnownSafeCalls: [
388+
{
389+
from: 'package',
390+
name: [
391+
'after',
392+
'afterEach',
393+
'before',
394+
'beforeEach',
395+
'describe',
396+
'describe.only',
397+
'describe.skip',
398+
'describe.todo',
399+
'it',
400+
'it.only',
401+
'it.skip',
402+
'it.todo',
403+
'suite',
404+
'suite.only',
405+
'suite.skip',
406+
'suite.todo',
407+
'test',
408+
'test.only',
409+
'test.skip',
410+
'test.todo',
411+
],
412+
package: 'node:test',
413+
},
414+
],
415+
},
416+
],
384417
'@typescript-eslint/no-non-null-assertion': 'off',
385418
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
386419
'@typescript-eslint/no-confusing-void-expression': 'off',

0 commit comments

Comments
 (0)