create array of main buttons
This commit is contained in:
parent
0dcb0c2f3e
commit
3043a74fa7
4 changed files with 73 additions and 0 deletions
|
|
@ -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();
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue