itemengine-cypress-automation 1.0.519-IEI-6793-e876c28.0 → 1.0.519-dependabot-npm-and-yarn-multi-c7c3a225fc-be735c0.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.
package/Dockerfile CHANGED
@@ -28,6 +28,7 @@ RUN chmod +x ./deploy/resourcesAndToolsQuestion/run.sh
28
28
  RUN chmod +x ./deploy/audioResponseQuestion/run.sh
29
29
  RUN chmod +x ./deploy/dataApi/run.sh
30
30
  RUN chmod +x ./deploy/feedbackScaleQuestion/run.sh
31
+ RUN chmod +x ./deploy/test/run.sh
31
32
 
32
33
  RUN npm ci
33
34
 
package/il.yaml CHANGED
@@ -11,7 +11,6 @@ otk:
11
11
  linuxDistribution: alpine
12
12
  language: node
13
13
  languageVersion: "20"
14
- analysis: false
15
14
  deployables:
16
15
  - ./deploy/audioResponseQuestion/service.yaml
17
16
  # - ./deploy/DNDIntoCategoriesQuestion/service.yaml
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.519-IEI-6793-e876c28.0",
3
+ "version": "1.0.519-dependabot-npm-and-yarn-multi-c7c3a225fc-be735c0.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -39,14 +39,12 @@
39
39
  "dependencies": {
40
40
  "@cypress/grep": "^3.1.5",
41
41
  "axe-core": "^4.7.1",
42
- "axios": "^1.12.2",
43
42
  "cy-verify-downloads": "^0.1.11",
44
43
  "cy2": "^4.0.9",
45
- "cypress": "^12.17.2",
44
+ "cypress": "^15.2.0",
46
45
  "cypress-axe": "^1.4.0",
47
46
  "cypress-file-upload": "^5.0.8",
48
47
  "cypress-real-events": "^1.7.6",
49
- "dotenv": "^17.2.2",
50
48
  "node-fetch": "^3.3.2",
51
49
  "react-uuid": "^2.0.0",
52
50
  "typescript": "^5.6.3"
@@ -260,7 +260,7 @@ export function runSorryCypressQuestions() {
260
260
  const specPaths = questionTypes.map(type => `cypress/e2e/ILC/${type}/**/*.js`).join(",");
261
261
  console.log("Spec Paths:", specPaths);
262
262
 
263
- const command = command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "${specPaths}"`;
263
+ const command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "${specPaths}"`;
264
264
 
265
265
  console.log(`Running Command: ${command}`);
266
266
  try {