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