57 lines
1.8 KiB
TypeScript
57 lines
1.8 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 {transformSync} from '@babel/core';
|
|
|
|
describe('default babel plugin entry-point', () => {
|
|
it('should work as a Babel plugin using the module specifier', () => {
|
|
const result = transformSync(
|
|
`
|
|
import * as i0 from "@angular/core";
|
|
|
|
export class MyMod {}
|
|
export class MyComponent {}
|
|
|
|
MyMod.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "0.0.0-PLACEHOLDER", ngImport: i0, type: MyMod, declarations: [MyComponent] });
|
|
`,
|
|
{
|
|
plugins: [
|
|
'@angular/compiler-cli/linker/babel',
|
|
],
|
|
filename: 'test.js',
|
|
})!;
|
|
|
|
expect(result).not.toBeNull();
|
|
expect(result.code).not.toContain('ɵɵngDeclareNgModule');
|
|
expect(result.code).toContain('i0.ɵɵdefineNgModule');
|
|
expect(result.code).not.toMatch(/declarations:\s*\[MyComponent]/);
|
|
});
|
|
|
|
it('should be configurable', () => {
|
|
const result = transformSync(
|
|
`
|
|
import * as i0 from "@angular/core";
|
|
|
|
export class MyMod {}
|
|
export class MyComponent {}
|
|
|
|
MyMod.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "0.0.0-PLACEHOLDER", ngImport: i0, type: MyMod, declarations: [MyComponent] });
|
|
`,
|
|
{
|
|
plugins: [
|
|
['@angular/compiler-cli/linker/babel', {linkerJitMode: true}],
|
|
],
|
|
filename: 'test.js',
|
|
})!;
|
|
|
|
expect(result).not.toBeNull();
|
|
expect(result.code).not.toContain('ɵɵngDeclareNgModule');
|
|
expect(result.code).toContain('i0.ɵɵdefineNgModule');
|
|
expect(result.code).toMatch(/declarations:\s*\[MyComponent]/);
|
|
});
|
|
});
|