itemengine-cypress-automation 1.0.257-updatedRepo18thNov-483622e.0 → 1.0.258-updatedRepo18thNov-409924f.0
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -75,7 +75,7 @@ function setCommandLineEnvArgs() {
|
|
75
75
|
* @method runSorryCypressLocal
|
76
76
|
*/
|
77
77
|
export function runSorryCypressLocal() {
|
78
|
-
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.
|
78
|
+
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
|
79
79
|
const user = OS.userInfo().username;
|
80
80
|
startTime = Math.round(Date.now() / 1000000);
|
81
81
|
ciBuildId = setCiBuildId(user, startTime);
|
@@ -89,7 +89,7 @@ export function runSorryCypressLocal() {
|
|
89
89
|
* @method runSorryCypressSpinnaker
|
90
90
|
*/
|
91
91
|
export function runSorryCypressSpinnaker() {
|
92
|
-
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.
|
92
|
+
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
|
93
93
|
startTime = process.env.START_TIME;
|
94
94
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
95
95
|
const envArgs = setCommandLineEnvArgs()
|
@@ -102,7 +102,7 @@ export function runSorryCypressSpinnaker() {
|
|
102
102
|
* @method runSorryCypressLocalSmoke
|
103
103
|
*/
|
104
104
|
export function runSorryCypressLocalSmoke() {
|
105
|
-
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.
|
105
|
+
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
|
106
106
|
const user = OS.userInfo().username;
|
107
107
|
startTime = Math.round(Date.now() / 1000000);
|
108
108
|
ciBuildId = setCiBuildId(user, startTime);
|
@@ -116,7 +116,7 @@ export function runSorryCypressLocalSmoke() {
|
|
116
116
|
* @method runSorryCypressSpinnakerSmoke
|
117
117
|
*/
|
118
118
|
export function runSorryCypressSpinnakerSmoke() {
|
119
|
-
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.
|
119
|
+
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
|
120
120
|
startTime = process.env.START_TIME;
|
121
121
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
122
122
|
const envArgs = setCommandLineEnvArgs()
|
@@ -135,7 +135,7 @@ export async function runSorryCypressSpinnakerMigration() {
|
|
135
135
|
process.env.referenceIds = referenceIds;
|
136
136
|
console.log(`Migration testing for: ${questionTypes}`);
|
137
137
|
console.log(`Item count: ${referenceIds}`);
|
138
|
-
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.
|
138
|
+
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
|
139
139
|
startTime = process.env.START_TIME;
|
140
140
|
ciBuildId = setCiBuildId("spinnaker", `migration${startTime}`);
|
141
141
|
const envArgs = setCommandLineEnvArgs()
|
@@ -154,7 +154,7 @@ export async function runSorryCypressLocalMigration() {
|
|
154
154
|
process.env.referenceIds = referenceIds;
|
155
155
|
console.log(`Migration testing for: ${questionTypes}`);
|
156
156
|
console.log(`Item count: ${referenceIds}`);
|
157
|
-
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.
|
157
|
+
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
|
158
158
|
startTime = process.env.START_TIME;
|
159
159
|
ciBuildId = setCiBuildId("spinnaker", `migration${startTime}`);
|
160
160
|
const envArgs = setCommandLineEnvArgs()
|