File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1165,8 +1165,8 @@ steps-tests: &steps-tests
1165
1165
ELECTRON_DISABLE_SECURITY_WARNINGS : 1
1166
1166
command : |
1167
1167
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))
1170
1170
- run :
1171
1171
name : Check test results existence
1172
1172
command : |
Original file line number Diff line number Diff line change @@ -1116,7 +1116,8 @@ describe('app module', () => {
1116
1116
} ) ;
1117
1117
} ) ;
1118
1118
1119
- describe ( 'getGPUInfo() API' , ( ) => {
1119
+ // FIXME https://github.com/electron/electron/issues/24224
1120
+ ifdescribe ( process . platform !== 'linux' ) ( 'getGPUInfo() API' , ( ) => {
1120
1121
const appPath = path . join ( fixturesPath , 'api' , 'gpu-info.js' ) ;
1121
1122
1122
1123
const getGPUInfo = async ( type : string ) => {
You can’t perform that action at this time.
0 commit comments