angular/packages/bazel/test/ngc-wrapped/flat_module_test.ts
Joey Perrott ec03e462f3 refactor: migrate bazel, benchpress, elements and misc to prettier formatting (#53995)
Migrate formatting to prettier for bazel, benchpress, elements and misc from clang-format

PR Close #53995
2024-01-22 09:07:15 +01:00

36 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 {runfiles} from '@bazel/runfiles';
import {existsSync, readFileSync} from 'fs';
import {dirname, join} from 'path';
describe('flat_module ng_module', () => {
let packageOutput: string;
let flatModuleOutFile: string;
beforeAll(() => {
packageOutput = dirname(
runfiles.resolve('angular/packages/bazel/test/ngc-wrapped/flat_module/index.mjs'),
);
flatModuleOutFile = join(packageOutput, 'flat_module.mjs');
});
it('should have a flat module out file', () => {
expect(existsSync(flatModuleOutFile)).toBe(true);
});
describe('flat module out file', () => {
it('should have a proper flat module re-export', () => {
expect(readFileSync(flatModuleOutFile, 'utf8')).toContain(`export * from './index';`);
expect(readFileSync(flatModuleOutFile, 'utf8')).toContain(
`Generated bundle index. Do not edit.`,
);
});
});
});