mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-01-18 10:46:34 +00:00
Update CLI tests to pass with Node 12
Change-type: patch Signed-off-by: Paulo Castro <paulo@balena.io>
This commit is contained in:
parent
e0e76a1aa8
commit
cc45d872c7
@ -40,7 +40,9 @@ export const runCommand = async (cmd: string) => {
|
||||
!log.startsWith('[debug]') &&
|
||||
// TODO stop this warning message from appearing when running
|
||||
// sdk.setSharedOptions multiple times in the same process
|
||||
!log.startsWith('Shared SDK options')
|
||||
!log.startsWith('Shared SDK options') &&
|
||||
// Node 12: '[DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated'
|
||||
!log.includes('[DEP0066]')
|
||||
) {
|
||||
err.push(log);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user