This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/src/app/advertiser/myProfil/page-profil-advertiser/page-profil-advertiser.component.spec.ts

25 lines
726 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PageProfilAdvertiserComponent } from './page-profil-advertiser.component';
describe('PageProfilAdvertiserComponent', () => {
let component: PageProfilAdvertiserComponent;
let fixture: ComponentFixture<PageProfilAdvertiserComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ PageProfilAdvertiserComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(PageProfilAdvertiserComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});