Skip to content
Snippets Groups Projects
Commit 4a02e773 authored by Kawtar Laariche's avatar Kawtar Laariche
Browse files

#19: add manage publisher authors page

parent abb1056e
Branches yocto-3.7
No related tags found
No related merge requests found
<p>manage-publisher-auhtors-page works!</p>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ManagePublisherAuhtorsPageComponent } from './manage-publisher-auhtors-page.component';
describe('ManagePublisherAuhtorsPageComponent', () => {
let component: ManagePublisherAuhtorsPageComponent;
let fixture: ComponentFixture<ManagePublisherAuhtorsPageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ManagePublisherAuhtorsPageComponent]
})
.compileComponents();
fixture = TestBed.createComponent(ManagePublisherAuhtorsPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
@Component({
selector: 'gp-manage-publisher-auhtors-page',
standalone: true,
imports: [CommonModule],
templateUrl: './manage-publisher-auhtors-page.component.html',
styleUrl: './manage-publisher-auhtors-page.component.scss'
})
export class ManagePublisherAuhtorsPageComponent {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment