Searched refs:testCaseContent (Results 1 – 2 of 2) sorted by relevance
/third_party/typescript/src/testRunner/ |
D | compilerRunner.ts | 158 …constructor(fileName: string, testCaseContent?: TestCaseParser.TestCaseContent, configurationOverr… 182 if (testCaseContent === undefined) { 183 … testCaseContent = TestCaseParser.makeUnitsFromTest(IO.readFile(fileName)!, fileName, rootDir); 187 …testCaseContent = { ...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 …]
|
D | test262Runner.ts | 38 const testCaseContent = TestCaseParser.makeUnitsFromTest(content, testFilename); constant 40 … const inputFiles: Compiler.TestFile[] = testCaseContent.testUnitData.map(unit => {
|