mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-19 04:26:01 +08:00
103 lines
3.5 KiB
TypeScript
103 lines
3.5 KiB
TypeScript
/**
|
|
* @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
|
|
*/
|
|
|
|
|
|
import { TestProjectHost } from '@angular-devkit/architect/testing';
|
|
import { getSystemPath, join, normalize } from '@angular-devkit/core';
|
|
import { ScriptTarget } from 'typescript';
|
|
import { BuildBrowserFeatures } from './build-browser-features';
|
|
|
|
const workspaceRoot = join(normalize(__dirname), '../../test/build-browser-features/');
|
|
const host = new TestProjectHost(workspaceRoot);
|
|
|
|
describe('BuildBrowserFeatures', () => {
|
|
let workspaceRootSysPath = '';
|
|
beforeEach(async () => {
|
|
await host.initialize().toPromise();
|
|
workspaceRootSysPath = getSystemPath(host.root());
|
|
});
|
|
|
|
afterEach(async () => host.restore().toPromise());
|
|
|
|
describe('isDifferentialLoadingNeeded', () => {
|
|
it('should be true for IE 9-11 and ES2015', () => {
|
|
host.writeMultipleFiles({
|
|
'.browserslistrc': 'IE 9-11',
|
|
});
|
|
|
|
const buildBrowserFeatures = new BuildBrowserFeatures(workspaceRootSysPath);
|
|
expect(buildBrowserFeatures.isDifferentialLoadingNeeded(ScriptTarget.ES2015)).toBe(true);
|
|
});
|
|
|
|
it('should be false for Chrome and ES2015', () => {
|
|
host.writeMultipleFiles({
|
|
'.browserslistrc': 'last 1 chrome version',
|
|
});
|
|
|
|
const buildBrowserFeatures = new BuildBrowserFeatures(workspaceRootSysPath);
|
|
expect(buildBrowserFeatures.isDifferentialLoadingNeeded(ScriptTarget.ES2015)).toBe(false);
|
|
});
|
|
|
|
it('detects no need for differential loading for target is ES5', () => {
|
|
host.writeMultipleFiles({
|
|
'.browserslistrc': 'last 1 chrome version',
|
|
});
|
|
|
|
const buildBrowserFeatures = new BuildBrowserFeatures(workspaceRootSysPath);
|
|
expect(buildBrowserFeatures.isDifferentialLoadingNeeded(ScriptTarget.ES5)).toBe(false);
|
|
});
|
|
|
|
it('should be false for Safari 10.1 when target is ES2015', () => {
|
|
host.writeMultipleFiles({
|
|
'.browserslistrc': 'Safari 10.1',
|
|
});
|
|
|
|
const buildBrowserFeatures = new BuildBrowserFeatures(workspaceRootSysPath);
|
|
expect(buildBrowserFeatures.isDifferentialLoadingNeeded(ScriptTarget.ES2015)).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe('isFeatureSupported', () => {
|
|
it('should be true for es6-module and Safari 10.1', () => {
|
|
host.writeMultipleFiles({
|
|
'.browserslistrc': 'Safari 10.1',
|
|
});
|
|
|
|
const buildBrowserFeatures = new BuildBrowserFeatures(workspaceRootSysPath);
|
|
expect(buildBrowserFeatures.isFeatureSupported('es6-module')).toBe(true);
|
|
});
|
|
|
|
it('should be false for es6-module and IE9', () => {
|
|
host.writeMultipleFiles({
|
|
'.browserslistrc': 'IE 9',
|
|
});
|
|
|
|
const buildBrowserFeatures = new BuildBrowserFeatures(workspaceRootSysPath);
|
|
expect(buildBrowserFeatures.isFeatureSupported('es6-module')).toBe(false);
|
|
});
|
|
|
|
it('should be true for es6-module and last 1 chrome version', () => {
|
|
host.writeMultipleFiles({
|
|
'.browserslistrc': 'last 1 chrome version',
|
|
});
|
|
|
|
const buildBrowserFeatures = new BuildBrowserFeatures(workspaceRootSysPath);
|
|
expect(buildBrowserFeatures.isFeatureSupported('es6-module')).toBe(true);
|
|
});
|
|
|
|
it('should be true for es6-module and Edge 18', () => {
|
|
host.writeMultipleFiles({
|
|
'.browserslistrc': 'Edge 18',
|
|
});
|
|
|
|
const buildBrowserFeatures = new BuildBrowserFeatures(workspaceRootSysPath);
|
|
expect(buildBrowserFeatures.isFeatureSupported('es6-module')).toBe(true);
|
|
});
|
|
});
|
|
});
|