Home
last modified time | relevance | path

Searched refs:justName (Results 1 – 3 of 3) sorted by relevance

/third_party/typescript/src/testRunner/unittests/services/
Dtranspile.ts40 …const justName = "transpile/" + name.replace(/[^a-z0-9\-. ]/ig, "") + (transpileOptions.compilerOp… constant
63 it("Correct errors for " + justName, () => {
64 Harness.Baseline.runBaseline(justName.replace(/\.tsx?$/, ".errors.txt"),
69 it("Correct errors (old transpile) for " + justName, () => {
70 … Harness.Baseline.runBaseline(justName.replace(/\.tsx?$/, ".oldTranspile.errors.txt"),
76 it("Correct output for " + justName, () => {
77 …Harness.Baseline.runBaseline(justName.replace(/\.tsx?$/, Extension.Js), transpileResult.outputText…
81 it("Correct output (old transpile) for " + justName, () => {
82 … Harness.Baseline.runBaseline(justName.replace(/\.tsx?$/, ".oldTranspile.js"), oldTranspileResult);
/third_party/typescript/src/testRunner/
DfourslashRunner.ts53 const justName = fn.replace(/^.*[\\\/]/, ""); constant
59 if (justName !== "fourslash.ts") {
60 it(this.testSuiteName + " test " + justName + " runs correctly", () => {
DcompilerRunner.ts154 private justName: string; property in Harness.CompilerTest
169 this.justName = vpath.basename(fileName);
170 this.configuredName = this.justName;
183 const extname = vpath.extname(this.justName);
184 const basename = vpath.basename(this.justName, extname, /*ignoreCase*/ true);