Skip to content

Commit 88a31d6

Browse files
committed
Change runner name from 'definitely' to 'dt'
1 parent 2378ff3 commit 88a31d6

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

Jakefile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ var harnessCoreSources = [
106106
"loggedIO.ts",
107107
"rwcRunner.ts",
108108
"userRunner.ts",
109-
"definitelyRunner.ts",
109+
"dtRunner.ts",
110110
"test262Runner.ts",
111111
"./parallel/shared.ts",
112112
"./parallel/host.ts",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class DefinitelyTypedRunner extends RunnerBase {
1010
}
1111

1212
public kind(): TestRunnerKind {
13-
return "definitely";
13+
return "dt";
1414
}
1515

1616
/** Setup the runner's tests so that they are ready to be executed by the harness

src/harness/runner.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/// <reference path="projectsRunner.ts" />
2020
/// <reference path="rwcRunner.ts" />
2121
/// <reference path="userRunner.ts" />
22-
/// <reference path="definitelyRunner.ts" />
22+
/// <reference path="dtRunner.ts" />
2323
/// <reference path="harness.ts" />
2424
/// <reference path="./parallel/shared.ts" />
2525

@@ -63,7 +63,7 @@ function createRunner(kind: TestRunnerKind): RunnerBase {
6363
return new Test262BaselineRunner();
6464
case "user":
6565
return new UserCodeRunner();
66-
case "definitely":
66+
case "dt":
6767
return new DefinitelyTypedRunner();
6868
}
6969
ts.Debug.fail(`Unknown runner kind ${kind}`);
@@ -186,7 +186,7 @@ function handleTestConfig() {
186186
case "user":
187187
runners.push(new UserCodeRunner());
188188
break;
189-
case "definitely":
189+
case "dt":
190190
runners.push(new DefinitelyTypedRunner());
191191
break;
192192
}

src/harness/runnerbase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// <reference path="harness.ts" />
22

33

4-
type TestRunnerKind = CompilerTestKind | FourslashTestKind | "project" | "rwc" | "test262" | "user" | "definitely";
4+
type TestRunnerKind = CompilerTestKind | FourslashTestKind | "project" | "rwc" | "test262" | "user" | "dt";
55
type CompilerTestKind = "conformance" | "compiler";
66
type FourslashTestKind = "fourslash" | "fourslash-shims" | "fourslash-shims-pp" | "fourslash-server";
77

0 commit comments

Comments
 (0)