log parameters in cloud runner parameter test

pull/353/head
Frostebite 2022-04-09 13:15:50 +01:00
parent c717f1e3b6
commit ab2f1dce97
1 changed files with 4 additions and 0 deletions

View File

@ -84,6 +84,10 @@ describe('Cloud Runner', () => {
element.value = element.value.replace(/\s+/g, '');
}
CloudRunnerLogger.log(`checking input/build param ${element} ${element.value}`);
}
}
for (const element of environmentVariables) {
if (element.value !== undefined && typeof element.value !== 'function') {
expect(newLinePurgedFile).toContain(`${element.name}`);
expect(newLinePurgedFile).toContain(`${element.name}=${element.value}`);
}