Skip to content

Commit

Permalink
chore: fix new code
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT committed Apr 25, 2024
1 parent 78e7264 commit 3e2a735
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/scripts/apidocs/verify-jsdoc-tags.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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,
Expand Down

0 comments on commit 3e2a735

Please sign in to comment.