clr-angular-static-fix
Version:
1. Install Clarity Icons package through npm:
21 lines (18 loc) • 760 B
text/typescript
/*
* Copyright (c) 2016-2018 VMware, Inc. All Rights Reserved.
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
import SignpostContentSpecs from './signpost-content.spec';
import SignpostTriggerSpecs from './signpost-trigger.spec';
import SignpostSpecs from './signpost.spec';
describe('Signpost', function() {
/*
* After having to work with it, I think this spec delves waaaay to much into the component's views.
* So I'm not happy with some of the code I wrote, but refactoring this whole spec is not part of my
* current work and it'll have to come later.
*/
SignpostSpecs();
SignpostContentSpecs();
SignpostTriggerSpecs();
});