itemengine-cypress-automation 1.0.266 → 1.0.267

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.266",
3
+ "version": "1.0.267",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -80,7 +80,7 @@ function setCommandLineEnvArgs() {
80
80
  * @method runSorryCypressLocal
81
81
  */
82
82
  export function runSorryCypressLocal() {
83
- process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
83
+ process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.tech/";
84
84
  const user = OS.userInfo().username;
85
85
  startTime = Math.round(Date.now() / 1000000);
86
86
  ciBuildId = setCiBuildId(user, startTime);
@@ -94,7 +94,7 @@ export function runSorryCypressLocal() {
94
94
  * @method runSorryCypressSpinnaker
95
95
  */
96
96
  export function runSorryCypressSpinnaker() {
97
- process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
97
+ process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.tech/";
98
98
  startTime = process.env.START_TIME;
99
99
  ciBuildId = setCiBuildId("spinnaker", startTime);
100
100
  const envArgs = setCommandLineEnvArgs()
@@ -107,7 +107,7 @@ export function runSorryCypressSpinnaker() {
107
107
  * @method runSorryCypressLocalSmoke
108
108
  */
109
109
  export function runSorryCypressLocalSmoke() {
110
- process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
110
+ process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.tech/";
111
111
  const user = OS.userInfo().username;
112
112
  startTime = Math.round(Date.now() / 1000000);
113
113
  ciBuildId = setCiBuildId(user, startTime);
@@ -121,7 +121,7 @@ export function runSorryCypressLocalSmoke() {
121
121
  * @method runSorryCypressSpinnakerSmoke
122
122
  */
123
123
  export function runSorryCypressSpinnakerSmoke() {
124
- process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
124
+ process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.tech/";
125
125
  startTime = process.env.START_TIME;
126
126
  ciBuildId = setCiBuildId("spinnaker", startTime);
127
127
  const envArgs = setCommandLineEnvArgs()
@@ -140,7 +140,7 @@ export async function runSorryCypressSpinnakerMigration() {
140
140
  process.env.referenceIds = referenceIds;
141
141
  console.log(`Migration testing for: ${questionTypes}`);
142
142
  console.log(`Item count: ${referenceIds}`);
143
- process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
143
+ process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.tech/";
144
144
  startTime = process.env.START_TIME;
145
145
  ciBuildId = setCiBuildId("spinnaker", `migration${startTime}`);
146
146
  const envArgs = setCommandLineEnvArgs()
@@ -159,7 +159,7 @@ export async function runSorryCypressLocalMigration() {
159
159
  process.env.referenceIds = referenceIds;
160
160
  console.log(`Migration testing for: ${questionTypes}`);
161
161
  console.log(`Item count: ${referenceIds}`);
162
- process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.engineering/";
162
+ process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.tech/";
163
163
  startTime = process.env.START_TIME;
164
164
  ciBuildId = setCiBuildId("spinnaker", `migration${startTime}`);
165
165
  const envArgs = setCommandLineEnvArgs()