blob: 4a86e911e9da6843d674b83a219213d9ce9f5a88 [file] [log] [blame]
elinuxhenrikf507d922020-03-19 14:52:24 +01001/*-
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 */
20import { TestBed, async } from '@angular/core/testing';
21import { RouterTestingModule } from '@angular/router/testing';
22import { AppComponent } from './app.component';
23
24describe('AppComponent', () => {
25 beforeEach(async(() => {
26 TestBed.configureTestingModule({
27 imports: [
28 RouterTestingModule
29 ],
30 declarations: [
31 AppComponent
32 ],
33 }).compileComponents();
34 }));
35
36 it('should create the app', () => {
37 const fixture = TestBed.createComponent(AppComponent);
38 const app = fixture.debugElement.componentInstance;
39 expect(app).toBeTruthy();
40 });
41
42 it(`should have as title 'controlpanelApp'`, () => {
43 const fixture = TestBed.createComponent(AppComponent);
44 const app = fixture.debugElement.componentInstance;
45 expect(app.title).toEqual('controlpanelApp');
46 });
47
48 it('should render title in a h1 tag', () => {
49 const fixture = TestBed.createComponent(AppComponent);
50 fixture.detectChanges();
51 const compiled = fixture.debugElement.nativeElement;
52 expect(compiled.querySelector('h1').textContent).toContain('Welcome to controlpanelApp!');
53 });
54});