src/pages/about/about.component.spec.ts
import { async, TestBed } from '@angular/core/testing';
import { IonicModule, NavController, Platform } from 'ionic-angular';
import { InfoService } from '../../providers/info.service';
import { AboutComponent } from './about.component';
import { MyApp } from '../../app/app.component';
import { IonicStorageModule } from '@ionic/storage';
import { PlatformMock } from '../../../test-config/mocks-ionic';
describe('About Component', () => {
let fixture;
let component;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [MyApp, AboutComponent],
imports: [
IonicModule.forRoot(MyApp),
IonicStorageModule.forRoot({name: 'test', storeName: 'test'})
],
providers: [
NavController,
InfoService,
{ provide: Platform, useClass: PlatformMock }
]
});
}));
beforeEach(() => {
(<any> window).ga = jasmine.createSpy('ga');
fixture = TestBed.createComponent(AboutComponent);
component = fixture.componentInstance;
});
afterEach(() => {
fixture.destroy();
component = null;
(<any> window).ga = undefined;
});
it ('should be created', () => {
expect(component instanceof AboutComponent).toBe(true);
});
it('sends a pageview to Google Analytics', () => {
expect((<any>window).ga.calls.allArgs()).toContain(
['set', 'page', '/settings/about.html']);
});
});