Skip to content

Commit b7ea16c

Browse files
committed
disable app.getGPUInfo spec on linux
1 parent c5efbdd commit b7ea16c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1165,8 +1165,8 @@ steps-tests: &steps-tests
11651165
ELECTRON_DISABLE_SECURITY_WARNINGS: 1
11661166
command: |
11671167
cd src
1168-
(cd electron && node script/yarn test --runners=main --trace-uncaught --enable-logging --disable-dev-shm-usage --files $(circleci tests glob spec-main/*-spec.ts | circleci tests split))
1169-
(cd electron && node script/yarn test --runners=remote --trace-uncaught --enable-logging --disable-dev-shm-usage --files $(circleci tests glob spec/*-spec.js | circleci tests split))
1168+
(cd electron && node script/yarn test --runners=main --trace-uncaught --enable-logging --files $(circleci tests glob spec-main/*-spec.ts | circleci tests split))
1169+
(cd electron && node script/yarn test --runners=remote --trace-uncaught --enable-logging --files $(circleci tests glob spec/*-spec.js | circleci tests split))
11701170
- run:
11711171
name: Check test results existence
11721172
command: |

spec-main/api-app-spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1116,7 +1116,8 @@ describe('app module', () => {
11161116
});
11171117
});
11181118

1119-
describe('getGPUInfo() API', () => {
1119+
// FIXME https://github.com/electron/electron/issues/24224
1120+
ifdescribe(process.platform !== 'linux')('getGPUInfo() API', () => {
11201121
const appPath = path.join(fixturesPath, 'api', 'gpu-info.js');
11211122

11221123
const getGPUInfo = async (type: string) => {

0 commit comments

Comments
 (0)