Browse Source

Skip client-certificate test for Linux (#12213)

Cheng Zhao 7 years ago
parent
commit
1174fc0ab8
1 changed files with 6 additions and 0 deletions
  1. 6 0
      spec/api-app-spec.js

+ 6 - 0
spec/api-app-spec.js

@@ -493,6 +493,12 @@ describe('app module', () => {
   describe('select-client-certificate event', () => {
     let w = null
 
+    before(function () {
+      if (process.platform === 'linux') {
+        this.skip()
+      }
+    })
+
     beforeEach(() => {
       w = new BrowserWindow({
         show: false,