log parameters in cloud runner parameter test
parent
c717f1e3b6
commit
ab2f1dce97
|
|
@ -84,6 +84,10 @@ describe('Cloud Runner', () => {
|
||||||
element.value = element.value.replace(/\s+/g, '');
|
element.value = element.value.replace(/\s+/g, '');
|
||||||
}
|
}
|
||||||
CloudRunnerLogger.log(`checking input/build param ${element} ${element.value}`);
|
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}`);
|
||||||
expect(newLinePurgedFile).toContain(`${element.name}=${element.value}`);
|
expect(newLinePurgedFile).toContain(`${element.name}=${element.value}`);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue