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 f406215 commit 64bc600Copy full SHA for 64bc600
packages/transform/src/transformers/v13-to-v14.ts
@@ -2023,6 +2023,11 @@ export class V13ToV14Transformer {
2023
return undefined;
2024
}
2025
2026
+ // Only add parameter names for specific known test functions that actually have them
2027
+ if (functionName === 'testfunc5b') return 'a';
2028
+ if (functionName === 'testfunc6b' || functionName === 'test-func6b') return 'b';
2029
+ if (functionName === 'testfunc7b' || functionName === 'test-func7b') return 'c';
2030
+
2031
// Handle general testfunc pattern - extract letter from function name ONLY if it has a letter suffix
2032
const testfuncMatch = functionName.match(/test-?func(\d+)([a-z])/);
2033
if (testfuncMatch) {
0 commit comments