clr-angular-static-fix
Version:
1. Install Clarity Icons package through npm:
29 lines (25 loc) • 1.1 kB
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 VerticalNavGroupRegistrationServiceSpecs from './providers/vertical-nav-group-registration.service.spec';
import VerticalNavIconServiceSpecs from './providers/vertical-nav-icon.service.spec';
import VerticalNavServiceSpecs from './providers/vertical-nav.service.spec';
import VerticalNavGroupSpecs from './vertical-nav-group.spec';
import VerticalNavIconDirectiveSpecs from './vertical-nav-icon.spec';
import VerticalNavLinkSpecs from './vertical-nav-link.spec';
import VerticalNavSpecs from './vertical-nav.spec';
describe('Vertical Nav', function() {
describe('Providers', function() {
VerticalNavServiceSpecs();
VerticalNavIconServiceSpecs();
VerticalNavGroupRegistrationServiceSpecs();
});
describe('Directives', function() {
VerticalNavIconDirectiveSpecs();
VerticalNavLinkSpecs();
VerticalNavGroupSpecs();
VerticalNavSpecs();
});
});