Home
last modified time | relevance | path

Searched refs:testCaseContent (Results 1 – 2 of 2) sorted by relevance

/third_party/typescript/src/testRunner/
DcompilerRunner.ts158 …constructor(fileName: string, testCaseContent?: TestCaseParser.TestCaseContent, configurationOverr…
182 if (testCaseContent === undefined) {
183testCaseContent = TestCaseParser.makeUnitsFromTest(IO.readFile(fileName)!, fileName, rootDir);
187testCaseContent = { ...testCaseContent, settings: { ...testCaseContent.settings, ...configurationO…
190 const units = testCaseContent.testUnitData;
191 this.harnessSettings = testCaseContent.settings;
194 if (testCaseContent.tsConfig) {
195 …assert.equal(testCaseContent.tsConfig.fileNames.length, 0, `list of files in tsconfig is not curre…
196 …assert.equal(testCaseContent.tsConfig.raw.exclude, undefined, `exclude in tsconfig is not currentl…
198 tsConfigOptions = ts.cloneCompilerOptions(testCaseContent.tsConfig.options);
[all …]
Dtest262Runner.ts38 const testCaseContent = TestCaseParser.makeUnitsFromTest(content, testFilename); constant
40 … const inputFiles: Compiler.TestFile[] = testCaseContent.testUnitData.map(unit => {