From 3e2a73553142129e2b45b931e8a6ddfe275f7f7e Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Thu, 25 Apr 2024 20:18:20 +0200 Subject: [PATCH] chore: fix new code --- test/scripts/apidocs/verify-jsdoc-tags.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/scripts/apidocs/verify-jsdoc-tags.spec.ts b/test/scripts/apidocs/verify-jsdoc-tags.spec.ts index ea5ed8b9b69..f85b056894f 100644 --- a/test/scripts/apidocs/verify-jsdoc-tags.spec.ts +++ b/test/scripts/apidocs/verify-jsdoc-tags.spec.ts @@ -147,7 +147,7 @@ ${examples}`; assertDescription(signature.description); }); - it('verify @example tag', { timeout: 30000 }, async () => { + it('verify @example tag', { timeout: 30_000 }, async () => { const examples = signature.examples.join('\n'); expect( @@ -171,7 +171,7 @@ ${examples}`; // This only checks whether the whole method is deprecated or not // It does not check whether the method is deprecated for a specific set of arguments - it('verify @deprecated tag', { timeout: 30000 }, async () => { + it('verify @deprecated tag', { timeout: 30_000 }, async () => { // Grab path to example file const path = resolvePathToMethodFile( moduleName,