Skip client-certificate test for Linux (#12189)
This commit is contained in:
parent
5f48f91d94
commit
cf36fdecbf
1 changed files with 6 additions and 0 deletions
|
@ -494,6 +494,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,
|
||||
|
|
Loading…
Reference in a new issue