25 lines
645 B
TypeScript
25 lines
645 B
TypeScript
import {ComponentFixture, TestBed, waitForAsync} from '@angular/core/testing';
|
|
|
|
import {NewUserComponent} from './new-user.component';
|
|
|
|
describe('NewUserComponent', () => {
|
|
let component: NewUserComponent;
|
|
let fixture: ComponentFixture<NewUserComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
void TestBed.configureTestingModule({
|
|
imports: [NewUserComponent],
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(NewUserComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
void expect(component).toBeTruthy();
|
|
});
|
|
});
|