ng-implementation/my-workspace/projects/sae-lib/layouts/wip-block/wip-block.spec.ts
2025-10-07 15:29:16 +02:00

23 lines
543 B
TypeScript

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