alientronics/fleetany-mobile

View on GitHub
src/pages/about/about.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { About } from './about';

let about: About = null;

class MockClass {}

describe('About', () => {

beforeEach(() => {      
  let mockClass: any = (<any>new MockClass());
  about = new About(mockClass);
});

it('initialises', () => {
  expect(about).not.toBeNull();
});

});