create array of main buttons

This commit is contained in:
tykayn 2025-09-22 09:57:38 +02:00
parent 0dcb0c2f3e
commit 3043a74fa7
4 changed files with 73 additions and 0 deletions

View file

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