Skip to content

Commit 149c2fe

Browse files
committed
More cleanup
1 parent ba3a0a7 commit 149c2fe

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

core/session.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)