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 0974eb6 commit d2e6683Copy full SHA for d2e6683
src/transforms/v2-to-v3/transformer.spec.ts
@@ -10,8 +10,8 @@ describe("v2-to-v3", () => {
10
.filter((fileName) => fileName.endsWith(".input.ts"))
11
.map((fileName) => fileName.replace(".input.ts", ""));
12
13
- describe.each([{}, { parser: "ts" }])("testOptions: %o", (testOptions) => {
14
- it.each(testFilePrefixes)(`transforms correctly using "%s" data`, (testFilePrefix) => {
+ describe.each(testFilePrefixes)(`transforms correctly using "%s" data`, (testFilePrefix) => {
+ it.each([{}, { parser: "ts" }])("with testOptions: %o", (testOptions) => {
15
const path = join(fixtureDir, testFilePrefix + `.input.ts`);
16
const source = readFileSync(path, "utf8");
17
const input = { path, source };
0 commit comments