itemengine-cypress-automation 1.0.64 → 1.0.65
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -66,7 +66,8 @@ function setCommandLineEnvArgs() {
|
|
66
66
|
* @param {string} ciBuildId
|
67
67
|
*/
|
68
68
|
function runSorryCypress(ciBuildId, envArgs) {
|
69
|
-
let command = `cypress-cloud run --parallel --browser chrome --record --key ImagineLearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs}`;
|
69
|
+
// let command = `cypress-cloud run --parallel --browser chrome --record --key ImagineLearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs}`;
|
70
|
+
let command = `cypress-cloud run --parallel --browser chrome --record --key ImagineLearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress\e2e\ILC\ShortTextResponse\*.js"`;
|
70
71
|
execSync(command, { stdio: "inherit" });
|
71
72
|
}
|
72
73
|
|