@playkit-js/playkit-js-ivq 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/cypress/e2e/ivq.cy.ts +2 -2
- package/dist/playkit-ivq.js +1 -1
- package/dist/playkit-ivq.js.map +1 -1
- package/package.json +1 -1
- package/translations/en.i18n.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [3.1.2](https://github.com/kaltura/playkit-js-ivq/compare/v3.1.1...v3.1.2) (2023-01-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **FEV-1652:** "Quiz submitted" popup (with scores) doesn't match the design. ([#75](https://github.com/kaltura/playkit-js-ivq/issues/75)) ([2fdbd55](https://github.com/kaltura/playkit-js-ivq/commit/2fdbd55))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
### [3.1.1](https://github.com/kaltura/playkit-js-ivq/compare/v3.1.0...v3.1.1) (2023-01-18)
|
|
6
15
|
|
|
7
16
|
|
package/cypress/e2e/ivq.cy.ts
CHANGED
|
@@ -151,7 +151,7 @@ describe('IVQ plugin', () => {
|
|
|
151
151
|
preparePage({}, {playback: {autoplay: true}});
|
|
152
152
|
cy.get('[data-testid="cuePointContainer"]').first().should('exist');
|
|
153
153
|
cy.get('[data-testid="ivqPopupTitle"]').should($div => {
|
|
154
|
-
expect($div.text()).to.eq('
|
|
154
|
+
expect($div.text()).to.eq('Quiz submitted');
|
|
155
155
|
});
|
|
156
156
|
cy.get('[data-testid="ivqPopupDescription"]').should($div => {
|
|
157
157
|
expect($div.text()).to.eq('Your score is 67/100');
|
|
@@ -175,7 +175,7 @@ describe('IVQ plugin', () => {
|
|
|
175
175
|
mockQuiz('quiz_welcome_page_disabled_with_attempt.json', 'cues_4_question.json');
|
|
176
176
|
preparePage({}, {playback: {autoplay: true}});
|
|
177
177
|
cy.get('[data-testid="ivqPopupTitle"]').should($div => {
|
|
178
|
-
expect($div.text()).to.eq('Quiz
|
|
178
|
+
expect($div.text()).to.eq('Quiz completed');
|
|
179
179
|
});
|
|
180
180
|
cy.get('[data-testid="ivqPopupDescription"]').should($div => {
|
|
181
181
|
expect($div.text()).to.eq('Take a moment to review your answers or go ahead to submit your answers.');
|