Files
angular__angular/packages/compiler/test/style_url_resolver_spec.ts
JoostK b5ad12b788 refactor(compiler): make template preparser null-safe (#44411)
This commit removes some non-null assertion operations to improve
null-safety.

PR Close #44411
2022-01-04 15:54:10 -08:00

34 lines
1.0 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 {isStyleUrlResolvable} from '@angular/compiler/src/style_url_resolver';
describe('isStyleUrlResolvable', () => {
it('should resolve relative urls', () => {
expect(isStyleUrlResolvable('someUrl.css')).toBe(true);
});
it('should resolve package: urls', () => {
expect(isStyleUrlResolvable('package:someUrl.css')).toBe(true);
});
it('should not resolve empty urls', () => {
expect(isStyleUrlResolvable(null)).toBe(false);
expect(isStyleUrlResolvable('')).toBe(false);
});
it('should not resolve urls with other schema', () => {
expect(isStyleUrlResolvable('http://otherurl')).toBe(false);
});
it('should not resolve urls with absolute paths', () => {
expect(isStyleUrlResolvable('/otherurl')).toBe(false);
expect(isStyleUrlResolvable('//otherurl')).toBe(false);
});
});