From 5c42f5719745deccbdd71849fe5be4ecd8004ccd Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Fri, 8 Mar 2019 17:07:10 -0800 Subject: [PATCH] test: skip failing win32 devtools keyboard spec --- spec/api-web-contents-spec.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spec/api-web-contents-spec.js b/spec/api-web-contents-spec.js index 4a6dd33f5b..f6cab15687 100644 --- a/spec/api-web-contents-spec.js +++ b/spec/api-web-contents-spec.js @@ -373,6 +373,9 @@ describe('webContents module', () => { if (process.platform === 'darwin' && isCi) { testFn = it.skip } + if (process.platform === 'win32' && isCi) { + testFn = it.skip + } try { // We have other tests that check if native modules work, if we fail to require // robotjs let's skip this test to avoid false negatives