33 lines
1.1 KiB
TypeScript
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!'
|
|
);
|
|
});
|
|
});
|