From a1ed821735940bd56b3f6b92ae3db85bba4dd241 Mon Sep 17 00:00:00 2001 From: Kyle Harding Date: Sat, 31 Aug 2024 06:00:50 -0400 Subject: [PATCH] tests: config: restore both network options to false See: https://github.com/balena-os/meta-balena/pull/3117 Change-type: patch Signed-off-by: Kyle Harding --- tests/suites/cloud/config.js | 4 ++-- tests/suites/hup/config.js | 4 ++-- tests/suites/os/config.js | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/suites/cloud/config.js b/tests/suites/cloud/config.js index 052a8e496f..a672fe5327 100644 --- a/tests/suites/cloud/config.js +++ b/tests/suites/cloud/config.js @@ -4,7 +4,7 @@ module.exports = [ suite: `${__dirname}/../suites/cloud`, config: { networkWired: false, - networkWireless: process.env.WORKER_TYPE === 'qemu' ? false : true, + networkWireless: false, balenaApiKey: process.env.BALENACLOUD_API_KEY, balenaApiUrl: process.env.BALENACLOUD_API_URL, organization: process.env.BALENACLOUD_ORG, @@ -29,4 +29,4 @@ module.exports = [ apiKey: process.env.BALENACLOUD_API_KEY, }, } -] \ No newline at end of file +] diff --git a/tests/suites/hup/config.js b/tests/suites/hup/config.js index 4f6dbfcbe8..db6fb8c104 100644 --- a/tests/suites/hup/config.js +++ b/tests/suites/hup/config.js @@ -4,7 +4,7 @@ module.exports = [ suite: `${__dirname}/../suites/hup`, config: { networkWired: false, - networkWireless: process.env.WORKER_TYPE === 'qemu' ? false : true, + networkWireless: false, downloadVersion: 'latest', balenaApiKey: process.env.BALENACLOUD_API_KEY, balenaApiUrl: process.env.BALENACLOUD_API_URL, @@ -30,4 +30,4 @@ module.exports = [ apiKey: process.env.BALENACLOUD_API_KEY, }, } -] \ No newline at end of file +] diff --git a/tests/suites/os/config.js b/tests/suites/os/config.js index 429a1367db..67d35317c6 100644 --- a/tests/suites/os/config.js +++ b/tests/suites/os/config.js @@ -4,7 +4,7 @@ module.exports = [ suite: `${__dirname}/../suites/os`, config: { networkWired: false, - networkWireless: process.env.WORKER_TYPE === 'qemu' ? false : true, + networkWireless: false, balenaApiKey: process.env.BALENACLOUD_API_KEY, balenaApiUrl: process.env.BALENACLOUD_API_URL, organization: process.env.BALENACLOUD_ORG, @@ -29,4 +29,4 @@ module.exports = [ apiKey: process.env.BALENACLOUD_API_KEY, }, } -] \ No newline at end of file +]