diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eea0c54259..718df0cda0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: macos: needs: lint - runs-on: macos-11 + runs-on: macos-latest if: github.ref == 'refs/heads/development' || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' timeout-minutes: 30 diff --git a/app/main.ts b/app/main.ts index 737ce97e69..a95d2af984 100644 --- a/app/main.ts +++ b/app/main.ts @@ -550,8 +550,8 @@ function handleCommonWindowEvents( } } -const DEFAULT_WIDTH = 800; -const DEFAULT_HEIGHT = 610; +const DEFAULT_WIDTH = enableCI ? 1024 : 800; +const DEFAULT_HEIGHT = enableCI ? 1024 : 610; // LARGEST_LEFT_PANE_WIDTH = 380 // TIMELINE_WIDTH = 300 // TIMELINE_MARGIN = 16 + 16 diff --git a/package.json b/package.json index d7263b38bf..34a8753359 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "test": "yarn test-node && yarn test-electron", "test-electron": "node ts/scripts/test-electron.js", "test-release": "node ts/scripts/test-release.js", - "test-node": "electron-mocha --file test/setup-test-node.js --recursive test/modules ts/test-node ts/test-both", + "test-node": "electron-mocha --timeout 10000 --file test/setup-test-node.js --recursive test/modules ts/test-node ts/test-both", "test-mock": "mocha ts/test-mock/**/*_test.js", "test-node-coverage": "nyc --reporter=lcov --reporter=text mocha --recursive test/modules ts/test-node ts/test-both", "eslint": "eslint --cache .", diff --git a/test/index.html b/test/index.html index 5b144543c4..4f1a510b9d 100644 --- a/test/index.html +++ b/test/index.html @@ -68,6 +68,8 @@