You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
747 B
TypeScript
28 lines
747 B
TypeScript
|
7 years ago
|
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
|
||
|
7 years ago
|
import { AuthenticationPage } from './authentication.page';
|
||
|
7 years ago
|
|
||
|
7 years ago
|
describe('AuthenticationPage', () => {
|
||
|
|
let component: AuthenticationPage;
|
||
|
|
let fixture: ComponentFixture<AuthenticationPage>;
|
||
|
7 years ago
|
|
||
|
|
beforeEach(async(() => {
|
||
|
|
TestBed.configureTestingModule({
|
||
|
7 years ago
|
declarations: [ AuthenticationPage ],
|
||
|
7 years ago
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||
|
|
})
|
||
|
7 years ago
|
.compileComponents();
|
||
|
7 years ago
|
}));
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
7 years ago
|
fixture = TestBed.createComponent(AuthenticationPage);
|
||
|
7 years ago
|
component = fixture.componentInstance;
|
||
|
|
fixture.detectChanges();
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should create', () => {
|
||
|
|
expect(component).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|