Files
wgenerator/src/app/services/user/user-name/user-name.component.spec.ts
T
benjamin 8b6ff52054 show user in show
restrict show actions
2020-05-13 19:35:21 +02:00

26 lines
639 B
TypeScript

import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {UserNameComponent} from './user-name.component';
describe('UserNameComponent', () => {
let component: UserNameComponent;
let fixture: ComponentFixture<UserNameComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [UserNameComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(UserNameComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});