econocart/src/pages/RelatorioExibe/main.spec.ts

23 lines
665 B
TypeScript

import { ComponentFixture, async } from '@angular/core/testing';
import { TestUtils } from '../../test';
import { PageRelatorioExibe } from './main';
let fixture: ComponentFixture<PageRelatorioExibe> = null;
let instance: any = null;
declare var describe: any;
declare var it: any;
declare var expect: any;
declare var beforeEach: any;
describe('Pages: Relatorios: Exibe', () => {
beforeEach(async(() => TestUtils.beforeEachCompiler([PageRelatorioExibe]).then(compiled => {
fixture = compiled.fixture;
instance = compiled.instance;
})));
it('should create the page', async(() => {
expect(instance).toBeTruthy();
}));
});