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