Files
Portfolio/src/app/components/dot-background/dot-background.spec.ts
2026-01-21 07:28:26 +01:00

24 lines
581 B
TypeScript

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