2025-08-07 16:06:25 +02:00
|
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2025-08-14 14:46:35 +02:00
|
|
|
import { Index } from './index';
|
2025-08-07 16:06:25 +02:00
|
|
|
|
2025-08-14 14:46:35 +02:00
|
|
|
describe('Index', () => {
|
|
|
|
let component: Index;
|
|
|
|
let fixture: ComponentFixture<Index>;
|
2025-08-07 16:06:25 +02:00
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
await TestBed.configureTestingModule({
|
2025-08-14 14:46:35 +02:00
|
|
|
imports: [Index]
|
2025-08-07 16:06:25 +02:00
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
|
2025-08-14 14:46:35 +02:00
|
|
|
fixture = TestBed.createComponent(Index);
|
2025-08-07 16:06:25 +02:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|