fix
parent
4eea8749df
commit
985d800791
|
|
@ -43,7 +43,7 @@ describe('Cloud Runner', () => {
|
||||||
for (const element of environmentVariables) {
|
for (const element of environmentVariables) {
|
||||||
if (element.value !== undefined && typeof element.value !== 'function') {
|
if (element.value !== undefined && typeof element.value !== 'function') {
|
||||||
const newLinePurgedValue = element.value.toString().replace(/\s+/g, '');
|
const newLinePurgedValue = element.value.toString().replace(/\s+/g, '');
|
||||||
expect(newLinePurgedFile).toContain(`${Input.ToEnvVarFormat(element.name)}=${newLinePurgedValue}`);
|
expect(newLinePurgedFile).toContain(`${element.name}=${newLinePurgedValue}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue