diff --git a/spec/chromium-spec.ts b/spec/chromium-spec.ts index f9af82e0fd7da..1bda056527558 100644 --- a/spec/chromium-spec.ts +++ b/spec/chromium-spec.ts @@ -2729,9 +2729,7 @@ describe('navigator.hid', () => { } else { expect(device).to.equal(''); } - if (process.arch === 'arm64' || process.arch === 'arm') { - // arm CI returns HID devices - this block may need to change if CI hardware changes. - expect(haveDevices).to.be.true(); + if (haveDevices) { // Verify that navigation will clear device permissions const grantedDevices = await w.webContents.executeJavaScript('navigator.hid.getDevices()'); expect(grantedDevices).to.not.be.empty();