@playkit-js/playkit-js-ivq 3.3.3 → 3.4.0-canary.0-e96b130

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 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.4.0-canary.0-e96b130 (2023-08-03)
6
+
7
+
8
+ ### Features
9
+
10
+ * **FEC-13110:** remove logic related to markers and use new api of timeline manager ([#97](https://github.com/kaltura/playkit-js-ivq/issues/97)) ([e96b130](https://github.com/kaltura/playkit-js-ivq/commit/e96b130))
11
+
12
+
13
+
5
14
  ### 3.3.3 (2023-07-26)
6
15
 
7
16
 
package/README.md CHANGED
@@ -58,7 +58,7 @@ Finally, add the bundle as a script tag in your page, and initialize the player
58
58
  <script type="text/javascript" src="/PATH/TO/FILE/kaltura-player.js"></script>
59
59
  <!--Kaltura player-->
60
60
  <script type="text/javascript" src="/PATH/TO/FILE/playkit-js-timeline.js"></script>
61
- <!--PlayKit cuepoints plugin-->
61
+ <!--PlayKit timeline plugin-->
62
62
  <script type="text/javascript" src="/PATH/TO/FILE/playkit-kaltura-cuepoints.js"></script>
63
63
  <!--PlayKit cuepoints plugin-->
64
64
  <script type="text/javascript" src="/PATH/TO/FILE/playkit-ivq.js"></script>
@@ -13,7 +13,7 @@ export const getPlayer = () => {
13
13
  return cy.window().then($win => $win.KalturaPlayer.getPlayers()['player-placeholder']);
14
14
  };
15
15
 
16
- export const preparePage = (puginConf = {}, playbackConf = {}) => {
16
+ export const preparePage = (pluginConf = {}, playbackConf = {}) => {
17
17
  cy.visit('index.html');
18
18
  return cy.window().then(win => {
19
19
  try {
@@ -28,9 +28,10 @@ export const preparePage = (puginConf = {}, playbackConf = {}) => {
28
28
  }
29
29
  },
30
30
  plugins: {
31
- ivq: puginConf,
31
+ ivq: pluginConf,
32
32
  uiManagers: {},
33
- kalturaCuepoints: {}
33
+ kalturaCuepoints: {},
34
+ timeline: {}
34
35
  },
35
36
  playback: {muted: true, ...playbackConf}
36
37
  });
@@ -20,7 +20,7 @@ describe('IVQ plugin', () => {
20
20
  done();
21
21
  });
22
22
  player.pause();
23
- cy.get('[data-testid="cuePointContainer"]').click({force: true});
23
+ cy.get('[data-testid="cuePointMarkerContainer"]').click({force: true});
24
24
  cy.get('[data-testid="continueButton"]').click({force: true});
25
25
  });
26
26
  });
@@ -32,7 +32,7 @@ describe('IVQ plugin', () => {
32
32
  done();
33
33
  });
34
34
  player.pause();
35
- cy.get('[data-testid="cuePointContainer"]').click({force: true});
35
+ cy.get('[data-testid="cuePointMarkerContainer"]').click({force: true});
36
36
  cy.get('[data-testid="continueButton"]').should('exist').click({force: true});
37
37
  cy.get('[data-testid="ivqPopupSubmitButton"]').click({force: true});
38
38
  });
@@ -57,7 +57,7 @@ describe('IVQ plugin', () => {
57
57
  done();
58
58
  });
59
59
  kalturaPlayer.pause();
60
- cy.get('[data-testid="cuePointContainer"]').click({force: true});
60
+ cy.get('[data-testid="cuePointMarkerContainer"]').click({force: true});
61
61
  cy.get('[data-testid="continueButton"]').should('exist').click({force: true});
62
62
  })
63
63
  );
@@ -75,7 +75,7 @@ describe('IVQ plugin', () => {
75
75
  }
76
76
  });
77
77
  player.pause();
78
- cy.get('[data-testid="cuePointContainer"]').click({force: true});
78
+ cy.get('[data-testid="cuePointMarkerContainer"]').click({force: true});
79
79
  cy.get('[data-testid="continueButton"]').should('exist').click({force: true});
80
80
  cy.get('[data-testid="ivqPopupSubmitButton"]').should('exist').click({force: true});
81
81
  });
@@ -93,7 +93,7 @@ describe('IVQ plugin', () => {
93
93
  counter++;
94
94
  });
95
95
  player.pause();
96
- cy.get('[data-testid="cuePointContainer"]').click({force: true});
96
+ cy.get('[data-testid="cuePointMarkerContainer"]').click({force: true});
97
97
  cy.get('[data-testid="continueButton"]').should('exist').click({force: true});
98
98
  cy.get('[data-testid="ivqPopupSubmitButton"]').should('exist').click({force: true});
99
99
  cy.get('[data-testid="reviewRetakeButton"]').should('exist').click({force: true});