-
Notifications
You must be signed in to change notification settings - Fork 166
LG-12178: new event name of idv_selfie_image_clicked and captureAttempts #10438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
601a168
062170f
8ffc561
d601d88
f4d94d5
fb71056
a521250
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1176,7 +1176,7 @@ describe('document-capture/components/acuant-capture', () => { | |
| }), | ||
| }); | ||
|
|
||
| expect(trackEvent).to.be.calledWith('IdV: selfie image clicked'); | ||
| expect(trackEvent).to.be.calledWith('idv_selfie_image_clicked'); | ||
| expect(trackEvent).to.be.calledWith('IdV: Acuant SDK loaded'); | ||
|
|
||
| expect(trackEvent).to.have.been.calledWith('idv_sdk_selfie_image_capture_opened'); | ||
|
|
@@ -1193,7 +1193,7 @@ describe('document-capture/components/acuant-capture', () => { | |
| }), | ||
| }); | ||
|
|
||
| expect(trackEvent).to.be.calledWith('IdV: selfie image clicked'); | ||
| expect(trackEvent).to.be.calledWith('idv_selfie_image_clicked'); | ||
| expect(trackEvent).to.be.calledWith('IdV: Acuant SDK loaded'); | ||
|
|
||
| expect(trackEvent).to.have.been.calledWith( | ||
|
|
@@ -1212,7 +1212,7 @@ describe('document-capture/components/acuant-capture', () => { | |
| }), | ||
| }); | ||
|
|
||
| expect(trackEvent).to.be.calledWith('IdV: selfie image clicked'); | ||
| expect(trackEvent).to.be.calledWith('idv_selfie_image_clicked'); | ||
| expect(trackEvent).to.be.calledWith('IdV: Acuant SDK loaded'); | ||
|
|
||
| expect(trackEvent).to.have.been.calledWith( | ||
|
|
@@ -1236,7 +1236,7 @@ describe('document-capture/components/acuant-capture', () => { | |
| }), | ||
| }); | ||
|
|
||
| expect(trackEvent).to.be.calledWith('IdV: selfie image clicked'); | ||
| expect(trackEvent).to.be.calledWith('idv_selfie_image_clicked'); | ||
| expect(trackEvent).to.be.calledWith('IdV: Acuant SDK loaded'); | ||
|
|
||
| expect(trackEvent).to.have.been.calledWith( | ||
|
|
@@ -1402,16 +1402,19 @@ describe('document-capture/components/acuant-capture', () => { | |
| source: 'placeholder', | ||
| isDrop: false, | ||
| liveness_checking_required: false, | ||
| captureAttempts: 1, | ||
| }); | ||
| expect(trackEvent).to.have.been.calledWith('IdV: test image clicked', { | ||
| source: 'button', | ||
| isDrop: false, | ||
| liveness_checking_required: false, | ||
| captureAttempts: 1, | ||
| }); | ||
| expect(trackEvent).to.have.been.calledWith('IdV: test image clicked', { | ||
| source: 'upload', | ||
| isDrop: false, | ||
| liveness_checking_required: false, | ||
| captureAttempts: 1, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that this is enough to test that the
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Forgot to include - here are some logs from
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @charleyf , you are right
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @charleyf, ok the card mentioned nothing about |
||
| }); | ||
| }); | ||
|
|
||
|
|
@@ -1432,6 +1435,7 @@ describe('document-capture/components/acuant-capture', () => { | |
| source: 'placeholder', | ||
| isDrop: true, | ||
| liveness_checking_required: false, | ||
| captureAttempts: 1, | ||
| }); | ||
| }); | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.