[CST-12109] porting of box thatallows undo of QAEvent request

This commit is contained in:
Mykhaylo Boychuk
2023-11-07 16:17:49 +01:00
parent ef1bd9fa3d
commit 5589c76f54
15 changed files with 210 additions and 2 deletions

View File

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