https://github.com/angular/angular
Raw File
Tip revision: 46e8982c6a1fe2a81bd4aa74011ff7964aaf8a70 authored by Paul Gschwendtner on 24 August 2022, 08:02:50 UTC
build: invalidate circleci cache to prune unused nested node modules (#47240)
Tip revision: 46e8982
style_url_resolver_spec.ts
/**
 * @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);
  });
});
back to top