Fix exitCode type

This commit is contained in:
Akis Kesoglou 2024-05-15 16:01:38 +03:00
parent 233bc705de
commit c28039a3f2

View File

@ -26,7 +26,7 @@ const standalonePath = path.resolve(__dirname, '..', 'build-bin', balenaExe);
export interface TestOutput {
err: string[]; // stderr
out: string[]; // stdout
exitCode?: number; // process.exitCode
exitCode?: string | number; // process.exitCode
}
function matchesNodeEngineVersionWarn(msg: string) {