> git show --textconv :src/app/pages/publications/view-publications/publication-detail/publication-detail.page.ts

This commit is contained in:
Tiago Kayaya
2020-12-16 15:07:28 +01:00
parent be03b9c0d3
commit c720767774
25 changed files with 329 additions and 122 deletions
@@ -0,0 +1,24 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { HeaderPrPage } from './header-pr.page';
describe('HeaderPrPage', () => {
let component: HeaderPrPage;
let fixture: ComponentFixture<HeaderPrPage>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ HeaderPrPage ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(HeaderPrPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});