Mise à jour du layout

This commit is contained in:
Rampeur
2025-08-13 01:28:11 +02:00
parent 0a6cbc0c00
commit 977104aac2
22 changed files with 267 additions and 313 deletions
+3 -3
View File
@@ -14,16 +14,16 @@ describe('AppComponent', () => {
expect(app).toBeTruthy();
});
it(`should have the 'headup_angular' title`, () => {
it(`should have the 'adastra_angular' title`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('headup_angular');
expect(app.title).toEqual('adastra_angular');
});
it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement as HTMLElement;
expect(compiled.querySelector('h1')?.textContent).toContain('Hello, headup_angular');
expect(compiled.querySelector('h1')?.textContent).toContain('Hello, adastra_angular');
});
});