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