From 50ecb15a0972853528dc9e0847b5593dac431826 Mon Sep 17 00:00:00 2001 From: rcooke-warwick Date: Mon, 3 Jul 2023 13:44:16 +0100 Subject: [PATCH] update e2e tests to use sshconfig Change-type: patch Signed-off-by: Ryan Cooke --- suites/e2e/suite.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/suites/e2e/suite.js b/suites/e2e/suite.js index 5dcd46647..8f60cafe1 100644 --- a/suites/e2e/suite.js +++ b/suites/e2e/suite.js @@ -75,7 +75,7 @@ module.exports = { utils: this.require('common/utils'), sshKeyPath: join(homedir(), 'id'), sshKeyLabel: this.suite.options.id, - sdk: new Balena(this.suite.options.balena.apiUrl, this.getLogger()), + sdk: new Balena(this.suite.options.balena.apiUrl, this.getLogger(), this.suite.options.config.sshConfig), link: `${this.suite.options.balenaOS.config.uuid.slice(0, 7)}.local`, worker: new Worker( this.suite.deviceType.slug, @@ -83,6 +83,7 @@ module.exports = { this.suite.options.workerUrl, this.suite.options.balena.organization, join(homedir(), 'id'), + this.suite.options.config.sshConfig ), });