24a2d6fa610781a2354baaeecf9fdb471283785d
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / app.component.spec.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
21 import { TestBed, async } from '@angular/core/testing';
22 import { RouterTestingModule } from '@angular/router/testing';
23 import { CookieService } from 'ngx-cookie';
24 import { AppComponent } from './app.component';
25 import { UiService } from './services/ui/ui.service';
26
27 describe('AppComponent', () => {
28   beforeEach(async(() => {
29     const cookieSpy = jasmine.createSpyObj('CookieService', [ 'get' ]);
30     TestBed.configureTestingModule({
31       imports: [
32         RouterTestingModule
33       ],
34       schemas: [
35         CUSTOM_ELEMENTS_SCHEMA
36       ],
37       declarations: [
38         AppComponent
39       ],
40       providers: [
41         { provide: CookieService, useValue: cookieSpy },
42         UiService
43       ]
44     }).compileComponents();
45   }));
46
47   it('should create the app', () => {
48     const fixture = TestBed.createComponent(AppComponent);
49     const app = fixture.debugElement.componentInstance;
50     expect(app).toBeTruthy();
51   });
52 });