mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
As part of the `updateProjectIfDirty` process and inside `updateNonInferredProjectFiles` TS Server will remove the template files that we added as roots in `readResource`. https://sourcegraph.com/github.com/microsoft/TypeScript@c300fea3250abd7f75920d95a58d9e742ac730ee/-/blob/src/server/editorServices.ts?L2363 The external files are added to the list here so ensuring that the templates are included in the `getExternalFiles` will prevent this from happening https://sourcegraph.com/github.com/microsoft/TypeScript@c300fea3250abd7f75920d95a58d9e742ac730ee/-/blob/src/server/editorServices.ts?L2395:18 PR Close #45965
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
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 {LanguageService} from '../../src/language_service';
|
|
import {getExternalFiles} from '../../src/ts_plugin';
|
|
|
|
import {APP_COMPONENT, setup} from './mock_host';
|
|
|
|
describe('getExternalFiles()', () => {
|
|
it('should return all typecheck files', () => {
|
|
const {project, tsLS} = setup();
|
|
let externalFiles = getExternalFiles(project);
|
|
// Initially there are no external files because Ivy compiler hasn't done
|
|
// a global analysis
|
|
expect(externalFiles).toEqual([]);
|
|
// Trigger global analysis
|
|
const ngLS = new LanguageService(project, tsLS, {});
|
|
ngLS.getSemanticDiagnostics(APP_COMPONENT);
|
|
// Now that global analysis is run, we should have all the typecheck files
|
|
externalFiles = getExternalFiles(project);
|
|
// Includes 1 typecheck file, 1 template, and 1 css files
|
|
expect(externalFiles.length).toBe(3);
|
|
expect(externalFiles[0].endsWith('app.component.ngtypecheck.ts')).toBeTrue();
|
|
});
|
|
});
|