Suppress the window.open tests on travis CI's mac machine
This commit is contained in:
parent
b358dff689
commit
c682ccd9d0
1 changed files with 4 additions and 0 deletions
|
@ -155,6 +155,10 @@ describe('chromium feature', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('window.open', function () {
|
describe('window.open', function () {
|
||||||
|
if (process.env.TRAVIS === 'true' && process.platform === 'darwin') {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
this.timeout(20000)
|
this.timeout(20000)
|
||||||
|
|
||||||
it('returns a BrowserWindowProxy object', function () {
|
it('returns a BrowserWindowProxy object', function () {
|
||||||
|
|
Loading…
Reference in a new issue