electron/spec/fixtures/api/gpu-info.js
Alexey Kuzmin c9edf77e8e test: slightly rewrite getGPUInfo() tests (#14863)
Rewrite GPUInfo tests for linux and update `getGPUInfo` functionality for linux.
`basic` and `complete` GPUInfo is same for linux.
2018-10-01 18:34:52 -07:00

17 lines
357 B
JavaScript

const { app } = require('electron')
app.commandLine.appendSwitch('--disable-software-rasterizer')
app.on('ready', () => {
const infoType = process.argv.pop()
app.getGPUInfo(infoType).then(
(gpuInfo) => {
console.log(JSON.stringify(gpuInfo))
app.exit(0)
},
(error) => {
console.error(error)
app.exit(1)
}
)
})