keviocastro/angular2-components

View on GitHub
e2e/app.e2e-spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Test2Page } from './app.po';

describe('test2 App', () => {
  let page: Test2Page;

  beforeEach(() => {
    page = new Test2Page();
  });

  it('should display welcome message', () => {
    page.navigateTo();
    expect(true).toEqual(true);
  });
});