-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(betterer ✨): run tests in parallel (#815)
- Loading branch information
1 parent
f691bfa
commit 581cf51
Showing
76 changed files
with
2,011 additions
and
1,270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
import { BettererConfig } from '../config'; | ||
import { BettererSuiteSummaries, BettererSuiteSummary } from '../suite'; | ||
import { BettererSuiteSummariesΩ, BettererSuiteSummaryΩ } from '../suite'; | ||
import { BettererContextSummary } from './types'; | ||
import { BettererGlobals } from '../types'; | ||
|
||
export class BettererContextSummaryΩ implements BettererContextSummary { | ||
public readonly config: BettererConfig; | ||
constructor(public readonly config: BettererConfig, public readonly suites: BettererSuiteSummariesΩ) {} | ||
|
||
constructor(private _globals: BettererGlobals, public readonly suites: BettererSuiteSummaries) { | ||
this.config = this._globals.config; | ||
} | ||
|
||
public get lastSuite(): BettererSuiteSummary { | ||
public get lastSuite(): BettererSuiteSummaryΩ { | ||
return this.suites[this.suites.length - 1]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
export { BettererFileGlobs, BettererFilePaths, BettererFilePatterns, BettererFileResolver } from './types'; | ||
export { | ||
BettererFileGlobs, | ||
BettererFilePath, | ||
BettererFilePaths, | ||
BettererFilePatterns, | ||
BettererFileResolver | ||
} from './types'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.