From b27d4fceebda1ff01b054d99e7211bd31ba108d1 Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sat, 20 Apr 2024 21:29:43 +0200 Subject: test(docs): fix test timeout (#2782) --- test/scripts/apidocs/verify-jsdoc-tags.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/scripts') diff --git a/test/scripts/apidocs/verify-jsdoc-tags.spec.ts b/test/scripts/apidocs/verify-jsdoc-tags.spec.ts index 16f0ea51..ea5ed8b9 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', async () => { + it('verify @example tag', { timeout: 30000 }, 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', async () => { + it('verify @deprecated tag', { timeout: 30000 }, async () => { // Grab path to example file const path = resolvePathToMethodFile( moduleName, -- cgit v1.2.3