agent-create.page.spec.ts 476 B

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