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