umts/pvta-multiplatform

View on GitHub
src/pages/routes-and-stops/routes-and-stops.component.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { async, TestBed } from '@angular/core/testing';
import { HttpModule } from '@angular/http';
import { MyApp } from '../../app/app.component';
import { NgxPaginationModule } from 'ngx-pagination';
import { IonicStorageModule } from '@ionic/storage';
import { IonicModule, NavController, LoadingController, AlertController } from 'ionic-angular';
import { Geolocation } from '@ionic-native/geolocation';
import { RouteService } from '../../providers/route.service';
import { StopService } from '../../providers/stop.service';
import { InfoService } from '../../providers/info.service';
import { FavoriteRouteService } from '../../providers/favorite-route.service';
import { RoutesAndStopsComponent } from './routes-and-stops.component';
import { FavoriteStopService } from '../../providers/favorite-stop.service';
import { ToastService } from '../../providers/toast.service';

describe('RoutesAndStops Component', () => {
  let fixture;
  let component;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [MyApp, RoutesAndStopsComponent],
      imports: [
        IonicModule.forRoot(MyApp),
        HttpModule,
        IonicStorageModule.forRoot({name: 'test', storeName: 'test'}),
        NgxPaginationModule
      ],
      providers: [
        NavController,
        InfoService,
        RouteService,
        StopService,
        LoadingController,
        FavoriteRouteService,
        AlertController,
        FavoriteStopService,
        Geolocation,
        ToastService
      ]
    });
  }));

  beforeEach(() => {
    (<any> window).ga = jasmine.createSpy('ga');
    fixture = TestBed.createComponent(RoutesAndStopsComponent);
    component = fixture.componentInstance;
  });

  afterEach(() => {
    fixture.destroy();
    component = null;
    (<any> window).ga = undefined;

  });

  it ('should be created', () => {
    expect(component instanceof RoutesAndStopsComponent).toBe(true);
  });
  it('sends a pageview to Google Analytics', () => {
    expect((<any>window).ga.calls.allArgs()).toContain(
    ['set', 'page', '/routes-and-stops.html']);
  });
});