itemengine-cypress-automation 1.0.309-applitoolsBranch-f085b90.0 → 1.0.310-updatedQuestionTypeCommand-7fd8988.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.309-applitoolsBranch-f085b90.0",
3
+ "version": "1.0.310-updatedQuestionTypeCommand-7fd8988.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -190,7 +190,7 @@ export function runSorryCypressQuestions() {
190
190
  const questionType = match ? match[1] : "**"; // Default to "**" if not found
191
191
  console.log("🚀 ~ runSorryCypressQuestions ~ questionType:", questionType)
192
192
 
193
- let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/${questionType}/*.js"`;
193
+ let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/${questionType}/**/*.js"`;
194
194
  console.log(`command: ${command}`);
195
195
  execSync(command, { stdio: "inherit" });
196
196
  }