mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The option 'local compile' is added for the test cases, and the locally compiled file for an input `abc.ts` is compared by default with the file `abc.local.js`. This allows to use the same input `abc.ts` for both full compilation (compared with `abc.js`) and local compilation (compared with `abc.local.js`). An example is provided in the next commit when compliance tests are added for the NgModule local compilation. PR Close #50577
26 lines
993 B
TypeScript
26 lines
993 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import {FileSystem} from '../../../src/ngtsc/file_system';
|
|
import {CompileResult, compileTest} from '../test_helpers/compile_test';
|
|
import {ComplianceTest} from '../test_helpers/get_compliance_tests';
|
|
import {runTests} from '../test_helpers/test_runner';
|
|
|
|
runTests('local compile', compileTests, {isLocalCompilation: true});
|
|
|
|
/**
|
|
* Compile all the input files in the given `test` using local compilation mode.
|
|
*
|
|
* @param fs The mock file-system where the input files can be found.
|
|
* @param test The compliance test whose input files should be compiled.
|
|
*/
|
|
function compileTests(fs: FileSystem, test: ComplianceTest): CompileResult {
|
|
return compileTest(fs, test.inputFiles, test.compilerOptions, {
|
|
...test.angularCompilerOptions,
|
|
compilationMode: 'experimental-local',
|
|
});
|
|
}
|