SDA-2571 Updated event variable name

This commit is contained in:
psjostrom
2020-12-18 14:11:15 +01:00
parent d84d54239c
commit 3f08517ee2
4 changed files with 8 additions and 8 deletions

View File

@@ -148,7 +148,7 @@ describe('<AnnotateArea/>', () => {
const path = wrapper.find('[data-testid="path0"]');
const expectedValue = { type: 'annotate_erased', element: 'screen_capture_annotate' };
path.simulate('click');
expect(spy).toBeCalledWith('send-tracking-data-to-main', expectedValue);
expect(spy).toBeCalledWith('snippet-analytics-data', expectedValue);
});
it('should send annotate_added_pen event when drawn with pen', () => {
@@ -158,7 +158,7 @@ describe('<AnnotateArea/>', () => {
const area = wrapper.find('[data-testid="annotate-area"]');
area.simulate('mousedown', { pageX: 2, pageY: 49 });
area.simulate('mouseup');
expect(spy).toBeCalledWith('send-tracking-data-to-main', expectedValue);
expect(spy).toBeCalledWith('snippet-analytics-data', expectedValue);
});
it('should send annotate_added_highlight event when drawn with highlight', () => {
@@ -178,6 +178,6 @@ describe('<AnnotateArea/>', () => {
const area = wrapper.find('[data-testid="annotate-area"]');
area.simulate('mousedown', { pageX: 2, pageY: 49 });
area.simulate('mouseup');
expect(spy).toBeCalledWith('send-tracking-data-to-main', expectedValue);
expect(spy).toBeCalledWith('snippet-analytics-data', expectedValue);
});
});

View File

@@ -25,7 +25,7 @@ describe('Snipping Tool', () => {
const spy = jest.spyOn(ipcRenderer, 'send');
const expectedValue = { type: 'screenshot_taken', element: 'screen_capture_annotate' };
mount(React.createElement(SnippingTool));
expect(spy).toBeCalledWith('send-tracking-data-to-main', expectedValue);
expect(spy).toBeCalledWith('snippet-analytics-data', expectedValue);
});
it('should send capture_sent BI event when clicking done', async () => {
@@ -35,7 +35,7 @@ describe('Snipping Tool', () => {
wrapper.find('[data-testid="done-button"]').simulate('click');
wrapper.update();
await waitForPromisesToResolve();
expect(spy).toBeCalledWith('send-tracking-data-to-main', expectedValue);
expect(spy).toBeCalledWith('snippet-analytics-data', expectedValue);
});
it('should send annotate_cleared BI event when clicking clear', async () => {
@@ -45,7 +45,7 @@ describe('Snipping Tool', () => {
wrapper.find('[data-testid="clear-button"]').simulate('click');
wrapper.update();
await waitForPromisesToResolve();
expect(spy).toBeCalledWith('send-tracking-data-to-main', expectedValue);
expect(spy).toBeCalledWith('snippet-analytics-data', expectedValue);
});
it('should render pen color picker when clicked on pen', () => {