This allows a bundle index to be re-exported by a higher-level module without fear of collisions. Under bazel, we always set the prefix to be underscore-joined workspace, package, label PR Close #23007
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * @license
 | 
						|
 * Copyright Google Inc. 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
 | 
						|
 */
 | 
						|
 | 
						|
const fs = require('fs');
 | 
						|
const PKG = 'angular/packages/compiler-cli/integrationtest/bazel/ng_module';
 | 
						|
describe('flat module index', () => {
 | 
						|
  describe('child metadata', () => {
 | 
						|
    it('should have contents', () => {
 | 
						|
      const metadata = fs.readFileSync(
 | 
						|
          require.resolve(`${PKG}/flat_module_filename.metadata.json`), {encoding: 'utf-8'});
 | 
						|
      expect(metadata).toContain('"__symbolic":"module"');
 | 
						|
      expect(metadata).toContain('"__symbolic":"reference","module":"@angular/core"');
 | 
						|
      expect(metadata).toContain(
 | 
						|
          '"origins":{"Child":"./child","ɵangular_packages_compiler_cli_integrationtest_bazel_ng_module_test_module_a":"./parent"}');
 | 
						|
      expect(metadata).toContain('"importAs":"some_npm_module"');
 | 
						|
    });
 | 
						|
  });
 | 
						|
  describe('child typings', () => {
 | 
						|
    it('should have contents', () => {
 | 
						|
      const dts =
 | 
						|
          fs.readFileSync(require.resolve(`${PKG}/flat_module_filename.d.ts`), {encoding: 'utf-8'});
 | 
						|
 | 
						|
      expect(dts).toContain('export * from \'./index\';');
 | 
						|
      expect(dts).toContain(
 | 
						|
          'export { Parent as ɵangular_packages_compiler_cli_integrationtest_bazel_ng_module_test_module_a } from \'./parent\';');
 | 
						|
    });
 | 
						|
  });
 | 
						|
}); |