DEV: feedback comments

This commit is contained in:
Gabriel Grubba
2026-04-08 09:11:48 -03:00
parent 197398d16f
commit fd95281186
2 changed files with 2 additions and 11 deletions

View File

@@ -46,15 +46,6 @@ jobs:
restore-keys: |
${{ runner.os }}-meteor-
- name: Install system dependencies
# g++-12 is needed to build native Node.js add-ons (e.g. fibers).
# All Chromium dependencies are already satisfied on oss-vm.
run: |
if ! dpkg -s g++-12 >/dev/null 2>&1; then
sudo apt-get update
sudo apt-get install -y g++-12
fi
- name: Run test-in-console suite
run: |
export TEST_PACKAGES_EXCLUDE="stylus"

View File

@@ -59,9 +59,9 @@ async function runNextUrl(browser) {
// Use domcontentloaded: Meteor apps connect via DDP after DOM parse and never
// fire the default 'load' event in the traditional sense. Increase timeout to
// 120 s to handle slow first-run builds on CI / underpowered machines.
// 90 s to handle slow first-run builds on CI / underpowered machines.
await page.goto(process.env.URL, {
timeout: 120000,
timeout: 90000,
waitUntil: "domcontentloaded",
});