We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d90713 commit 15f1214Copy full SHA for 15f1214
src/transforms/v2-to-v3/transformer.spec.ts
@@ -7,9 +7,10 @@ import { join } from "path";
7
8
import transformer from "./transformer";
9
10
-const inputFileRegex = /(.*).input.[jt]sx?$/;
11
-
12
describe("v2-to-v3", () => {
+ jest.setTimeout(20000);
+
13
+ const inputFileRegex = /(.*).input.[jt]sx?$/;
14
const fixtureDir = join(__dirname, "__fixtures__");
15
const testFiles: [string, string][] = readdirSync(fixtureDir)
16
.filter((fileName) => inputFileRegex.test(fileName))
0 commit comments