itemengine-cypress-automation 1.0.195 → 1.0.196-drawingResponseMigration-b8f7823.0

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.
@@ -346,9 +346,6 @@ export const extractLrnQuestionData = {
346
346
  .each(($button) => {
347
347
  let ariaLabel = $button[0].attributes["aria-label"].nodeValue;
348
348
  toolbarButtons.push(ariaLabel);
349
- })
350
- .then(() => {
351
- toolbarButtons.push('select');
352
349
  });
353
350
  });
354
351
  obj.toolbarButtons = toolbarButtons;
@@ -339,7 +339,8 @@ export const verifyIeQuestionData = {
339
339
  let ariaLabel = $button[0].attributes["aria-label"].nodeValue;
340
340
  ieButtonsActual.push(ariaLabel);
341
341
  }).then(() => {
342
- expect(ieButtonsActual).to.have.deep.members(ieButtonsExpected);
342
+ const ieButtonsFiltered = ieButtonsExpected.filter(label => label !== 'select');
343
+ expect(ieButtonsFiltered).to.have.deep.members(ieButtonsExpected);
343
344
  });
344
345
  iePage.drawingResponseLowerCanvas()
345
346
  .then(($canvas) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.195",
3
+ "version": "1.0.196-drawingResponseMigration-b8f7823.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {