itemengine-cypress-automation 1.0.65 → 1.0.67
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 +6 -2
- package/package.json +1 -1
- package/scripts/sorry-cypress.mjs +1 -1
package/Dockerfile
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
#use Cypress base image from https://github.com/cypress-io/cypress-docker-images
|
2
|
-
FROM cypress/base:14.19.0
|
3
|
-
FROM cypress/browsers:node14.19.0-chrome100-ff99-edge
|
2
|
+
# FROM cypress/base:14.19.0
|
3
|
+
# FROM cypress/browsers:node14.19.0-chrome100-ff99-edge
|
4
|
+
|
5
|
+
FROM cypress/included:12.17.2
|
6
|
+
|
7
|
+
RUN apt-get update && apt-get install curl -y
|
4
8
|
|
5
9
|
WORKDIR /ie-e2e
|
6
10
|
|
package/package.json
CHANGED
@@ -67,7 +67,7 @@ function setCommandLineEnvArgs() {
|
|
67
67
|
*/
|
68
68
|
function runSorryCypress(ciBuildId, envArgs) {
|
69
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
|
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"`;
|
71
71
|
execSync(command, { stdio: "inherit" });
|
72
72
|
}
|
73
73
|
|