Skip to content

Commit

Permalink
Update describe() function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeckem committed Feb 20, 2025
1 parent f4da414 commit 59b5e4c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/build-package/src/buildDts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ import { SUPPORTED_JS_EXTENSIONS } from "./model/PackageModel";

describe(
"buildDts",
{
timeout: 20000
},
function () {
it("generates .d.ts files for a simple typescript package", async function () {
const packageDirectory = resolve(TEST_DATA_DIR, "simple-ts-project");
Expand Down Expand Up @@ -135,9 +138,6 @@ describe(
const messages = defaults.logger.messages.map((m) => m.args[0]!);
expect(messages.length).toBe(0);
});
},
{
timeout: 20000
}
);

Expand Down
6 changes: 3 additions & 3 deletions packages/build-package/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ import { createMemoryLogger } from "./utils/Logger";

describe(
"build",
{
timeout: 20000
},
function () {
beforeAll(async () => {
await mkdir(TEMP_DATA_DIR, { recursive: true });
Expand Down Expand Up @@ -155,8 +158,5 @@ describe(
"
`);
});
},
{
timeout: 20000
}
);

0 comments on commit 59b5e4c

Please sign in to comment.