File tree 1 file changed +10
-10
lines changed 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -50,18 +50,18 @@ function getTestCases(): TestCase[] {
50
50
}
51
51
52
52
return fs
53
- . readdirSync ( testCasesDir )
54
- . filter ( ( fileName : string ) => testDataFilter . test ( fileName ) )
55
- . filter ( ( fileName : string ) => testCaseFilterRe . test ( fileName ) )
56
- . map ( ( fileName : string ) => {
57
- const testCaseName = fileName . match ( testDataFilter ) ! [ 1 ] ;
53
+ . readdirSync ( testCasesDir )
54
+ . filter ( ( fileName : string ) => testDataFilter . test ( fileName ) )
55
+ . filter ( ( fileName : string ) => testCaseFilterRe . test ( fileName ) )
56
+ . map ( ( fileName : string ) => {
57
+ const testCaseName = fileName . match ( testDataFilter ) ! [ 1 ] ;
58
58
59
- const inputFileName = `${ testCaseName } .input.d.ts` ;
60
- const outputFileName = `${ testCaseName } .output.d.ts` ;
59
+ const inputFileName = `${ testCaseName } .input.d.ts` ;
60
+ const outputFileName = `${ testCaseName } .output.d.ts` ;
61
61
62
- const name = testCaseName . replace ( / - / g, ' ' ) ;
63
- return { name, inputFileName, outputFileName } ;
64
- } ) ;
62
+ const name = testCaseName . replace ( / - / g, ' ' ) ;
63
+ return { name, inputFileName, outputFileName } ;
64
+ } ) ;
65
65
}
66
66
67
67
describe ( 'Prune DTS' , ( ) => {
You can’t perform that action at this time.
0 commit comments