1234567891011121314151617 |
- import { ComponentFixture, TestBed } from '@angular/core/testing';
- import { CasePage } from './case.page';
- describe('CasePage', () => {
- let component: CasePage;
- let fixture: ComponentFixture<CasePage>;
- beforeEach(() => {
- fixture = TestBed.createComponent(CasePage);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|