Skip to content

Commit 15f1214

Browse files
authored
test: set jest timeout of 20s for transformer (#195)
1 parent 2d90713 commit 15f1214

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/transforms/v2-to-v3/transformer.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ import { join } from "path";
77

88
import transformer from "./transformer";
99

10-
const inputFileRegex = /(.*).input.[jt]sx?$/;
11-
1210
describe("v2-to-v3", () => {
11+
jest.setTimeout(20000);
12+
13+
const inputFileRegex = /(.*).input.[jt]sx?$/;
1314
const fixtureDir = join(__dirname, "__fixtures__");
1415
const testFiles: [string, string][] = readdirSync(fixtureDir)
1516
.filter((fileName) => inputFileRegex.test(fileName))

0 commit comments

Comments
 (0)