31 lines
1015 B
TypeScript
31 lines
1015 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
import { provideRouter } from '@angular/router';
|
|
import { App } from './app';
|
|
|
|
describe('App', () => {
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [App],
|
|
providers: [provideRouter([])],
|
|
}).compileComponents();
|
|
});
|
|
|
|
it('should create the app', () => {
|
|
const fixture = TestBed.createComponent(App);
|
|
const app = fixture.componentInstance;
|
|
expect(app).toBeTruthy();
|
|
});
|
|
|
|
it('should render the side navigation shell', async () => {
|
|
const fixture = TestBed.createComponent(App);
|
|
await fixture.whenStable();
|
|
fixture.detectChanges();
|
|
|
|
const compiled = fixture.nativeElement as HTMLElement;
|
|
expect(compiled.querySelector('app-interactive-background')).toBeTruthy();
|
|
expect(compiled.querySelector('.sidebar')).toBeTruthy();
|
|
expect(compiled.querySelectorAll('.nav a').length).toBeGreaterThanOrEqual(4);
|
|
expect(compiled.querySelector('.site-footer')).toBeTruthy();
|
|
});
|
|
});
|