File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ export class Session {
4949 public canonicalProjectConfig : dataform . ProjectConfig ;
5050
5151 public actions : Action [ ] ;
52- public tests : Test [ ] ;
5352 public indexedActions : ActionMap ;
5453
5554 // This map holds information about what assertions are dependent
@@ -77,7 +76,6 @@ export class Session {
7776 dataform . ProjectConfig . create ( originalProjectConfig || projectConfig || DEFAULT_CONFIG )
7877 ) ;
7978 this . actions = [ ] ;
80- this . tests = [ ] ;
8179 this . graphErrors = { compilationErrors : [ ] } ;
8280 }
8381
@@ -391,7 +389,6 @@ export class Session {
391389 newTest . setFilename ( utils . getCallerFile ( this . rootDir ) ) ;
392390 // Add it to global index.
393391 this . actions . push ( newTest )
394- this . tests . push ( newTest ) ;
395392 return newTest ;
396393 }
397394
@@ -466,7 +463,6 @@ export class Session {
466463 targets : this . actions . map ( action => action . getTarget ( ) )
467464 } ) ;
468465
469- // Add unit tests as dependencies to the parent actions
470466 this . addTestsAsDependenciesToTestedActions ( this . actions ) ;
471467
472468 this . fullyQualifyDependencies (
You can’t perform that action at this time.
0 commit comments