ucap-doc/documents/업무/7월/4째주/backup/profile-menu-01.component.spec.ts
Park Byung Eun 7dba490e93 sync
2020-07-23 14:02:32 +09:00

33 lines
1.1 KiB
TypeScript

import { TestBed, async } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { ProfileMenu01Component } from './profile-menu-01.component';
describe('app::ucap::group::ProfileMenu01Component', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule],
declarations: [ProfileMenu01Component]
}).compileComponents();
}));
it('should create the app', () => {
const fixture = TestBed.createComponent(ProfileMenu01Component);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
it(`should have as title 'ucap-lg-web'`, () => {
const fixture = TestBed.createComponent(ProfileMenu01Component);
const app = fixture.componentInstance;
});
it('should render title', () => {
const fixture = TestBed.createComponent(ProfileMenu01Component);
fixture.detectChanges();
const compiled = fixture.nativeElement;
expect(compiled.querySelector('.content span').textContent).toContain(
'ucap-lg-web app is running!'
);
});
});