pull/310/head
Frostebite 2021-12-30 19:00:01 +00:00
parent 4eea8749df
commit 985d800791
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ describe('Cloud Runner', () => {
for (const element of environmentVariables) {
if (element.value !== undefined && typeof element.value !== 'function') {
const newLinePurgedValue = element.value.toString().replace(/\s+/g, '');
expect(newLinePurgedFile).toContain(`${Input.ToEnvVarFormat(element.name)}=${newLinePurgedValue}`);
expect(newLinePurgedFile).toContain(`${element.name}=${newLinePurgedValue}`);
}
}
}