File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ class CompilerBaselineRunner extends RunnerBase {
48
48
}
49
49
50
50
public checkTestCodeOutput ( fileName : string ) {
51
- describe ( "compiler tests for " + fileName , ( ) => {
51
+ describe ( ` ${ this . testSuiteName } tests for ${ fileName } ` , ( ) => {
52
52
// Mocha holds onto the closure environment of the describe callback even after the test is done.
53
53
// Everything declared here should be cleared out in the "after" callback.
54
54
let justName : string ;
Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ class ProjectRunner extends RunnerBase {
443
443
444
444
const name = "Compiling project for " + testCase . scenario + ": testcase " + testCaseFileName ;
445
445
446
- describe ( "Projects tests" , ( ) => {
446
+ describe ( "projects tests" , ( ) => {
447
447
describe ( name , ( ) => {
448
448
function verifyCompilerResults ( moduleKind : ts . ModuleKind ) {
449
449
let compilerResult : BatchCompileProjectTestCaseResult ;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ namespace RWC {
26
26
}
27
27
28
28
export function runRWCTest ( jsonPath : string ) {
29
- describe ( "Testing a RWC project: " + jsonPath , ( ) => {
29
+ describe ( "Testing a rwc project: " + jsonPath , ( ) => {
30
30
let inputFiles : Harness . Compiler . TestFile [ ] = [ ] ;
31
31
let otherFiles : Harness . Compiler . TestFile [ ] = [ ] ;
32
32
let tsconfigFiles : Harness . Compiler . TestFile [ ] = [ ] ;
@@ -266,6 +266,7 @@ class RWCRunner extends RunnerBase {
266
266
public initializeTests ( ) : void {
267
267
// Read in and evaluate the test list
268
268
const testList = this . tests && this . tests . length ? this . tests : this . enumerateTestFiles ( ) ;
269
+
269
270
for ( let i = 0 ; i < testList . length ; i ++ ) {
270
271
this . runTest ( testList [ i ] ) ;
271
272
}
You can’t perform that action at this time.
0 commit comments