Disable media device specs on CI where they may not be available
This commit is contained in:
parent
f891df55d4
commit
5153c1f353
1 changed files with 1 additions and 7 deletions
|
@ -90,13 +90,7 @@ describe('chromium feature', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('navigator.mediaDevices', function () {
|
describe('navigator.mediaDevices', function () {
|
||||||
if (process.env.TRAVIS === 'true') {
|
if (isCI) {
|
||||||
return
|
|
||||||
}
|
|
||||||
if (isCI && process.platform === 'linux') {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if (isCI && process.platform === 'win32') {
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue