mine.page.spec.ts 450 B

1234567891011121314151617
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { MinePage } from './mine.page';
  3. describe('MinePage', () => {
  4. let component: MinePage;
  5. let fixture: ComponentFixture<MinePage>;
  6. beforeEach(() => {
  7. fixture = TestBed.createComponent(MinePage);
  8. component = fixture.componentInstance;
  9. fixture.detectChanges();
  10. });
  11. it('should create', () => {
  12. expect(component).toBeTruthy();
  13. });
  14. });