We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4e85864 + 831bc38 commit 6f00275Copy full SHA for 6f00275
src/harness/runnerbase.ts
@@ -1,6 +1,6 @@
1
/// <reference path="harness.ts" />
2
3
-class RunnerBase {
+abstract class RunnerBase {
4
constructor() { }
5
6
// contains the tests to run
@@ -18,9 +18,7 @@ class RunnerBase {
18
/** Setup the runner's tests so that they are ready to be executed by the harness
19
* The first test should be a describe/it block that sets up the harness's compiler instance appropriately
20
*/
21
- public initializeTests(): void {
22
- throw new Error('method not implemented');
23
- }
+ public abstract initializeTests(): void;
24
25
/** Replaces instances of full paths with fileNames only */
26
static removeFullPaths(path: string) {
0 commit comments