18 lines
482 B
TypeScript
18 lines
482 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { GetIdentitasPage } from './get-identitas.page';
|
|
|
|
describe('GetIdentitasPage', () => {
|
|
let component: GetIdentitasPage;
|
|
let fixture: ComponentFixture<GetIdentitasPage>;
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(GetIdentitasPage);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|