ng-implementation/my-workspace/projects/sae-lib/colours/index/index.spec.ts

24 lines
521 B
TypeScript
Raw Normal View History

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