12345678910111213141516171819202122 |
- import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
- import { TestPageComponent } from './test-page.component';
- describe('TestPageComponent', () => {
- let component: TestPageComponent;
- let fixture: ComponentFixture<TestPageComponent>;
- beforeEach(waitForAsync(() => {
- TestBed.configureTestingModule({
- imports: [TestPageComponent],
- }).compileComponents();
- fixture = TestBed.createComponent(TestPageComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- }));
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|