File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,17 +35,17 @@ class FourSlashRunner extends RunnerBase {
3535 this . tests = this . enumerateFiles ( this . basePath , / \. t s / i, { recursive : false } ) ;
3636 }
3737
38- this . tests . forEach ( ( fn : string ) => {
39- describe ( fn , ( ) => {
40- fn = ts . normalizeSlashes ( fn ) ;
38+ this . tests . forEach ( ( fn : string ) => {
39+ describe ( fn , ( ) => {
40+ fn = ts . normalizeSlashes ( fn ) ;
4141 var justName = fn . replace ( / ^ .* [ \\ \/ ] / , '' ) ;
4242
4343 // Convert to relative path
4444 var testIndex = fn . indexOf ( 'tests/' ) ;
4545 if ( testIndex >= 0 ) fn = fn . substr ( testIndex ) ;
4646
4747 if ( justName && ! justName . match ( / f o u r s l a s h \. t s $ / i) && ! justName . match ( / \. d \. t s $ / i) ) {
48- it ( this . testSuiteName + ' test ' + justName + ' runs correctly' , ( ) => {
48+ it ( this . testSuiteName + ' test ' + justName + ' runs correctly' , ( ) => {
4949 FourSlash . runFourSlashTest ( this . basePath , this . testType , fn ) ;
5050 } ) ;
5151 }
You can’t perform that action at this time.
0 commit comments