@playkit-js/playkit-js-ivq 3.5.22 → 3.6.0-canary.0-e9baa44
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 +10 -0
- package/dist/playkit-ivq.js +1 -1
- package/dist/playkit-ivq.js.map +1 -1
- package/package.json +1 -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.6.0-canary.0-e9baa44 (2024-11-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **FEC-14234:** quiz preview mode ([#141](https://github.com/kaltura/playkit-js-ivq/issues/141)) ([e9baa44](https://github.com/kaltura/playkit-js-ivq/commit/e9baa44))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
### 3.5.22 (2024-11-14)
|
|
6
15
|
|
|
7
16
|
|
package/cypress/e2e/ivq.cy.ts
CHANGED
|
@@ -191,4 +191,14 @@ describe('IVQ plugin', () => {
|
|
|
191
191
|
});
|
|
192
192
|
});
|
|
193
193
|
});
|
|
194
|
+
|
|
195
|
+
describe('quiz API', () => {
|
|
196
|
+
it('should expose quiz API ', done => {
|
|
197
|
+
mockKalturaBe();
|
|
198
|
+
loadPlayer().then(player => {
|
|
199
|
+
expect(player.getService('ivq').setQuizAttributes).to.be.a('function');
|
|
200
|
+
done();
|
|
201
|
+
});
|
|
202
|
+
});
|
|
203
|
+
});
|
|
194
204
|
});
|