|
@@ -805,6 +805,14 @@ describe('app module', () => {
|
|
|
})
|
|
|
|
|
|
describe('getGPUInfo() API', () => {
|
|
|
+ before(function () {
|
|
|
+ // TODO(alexeykuzmoin): Fails on linux. Enable them back.
|
|
|
+ // https://github.com/electron/electron/pull/14863
|
|
|
+ if (process.platform === 'linux') {
|
|
|
+ this.skip()
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
it('succeeds with basic GPUInfo', (done) => {
|
|
|
app.getGPUInfo('basic').then((gpuInfo) => {
|
|
|
// Devices information is always present in the available info
|