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