From 77cdb4291c564a413afbcd54504d020f71d42691 Mon Sep 17 00:00:00 2001 From: baseballyama Date: Sat, 15 Apr 2023 18:01:00 +0900 Subject: [PATCH] remove Node8, 10 check logic --- test/runtime-puppeteer/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/runtime-puppeteer/index.ts b/test/runtime-puppeteer/index.ts index efb7ac02e34a..e2bcf2add16b 100644 --- a/test/runtime-puppeteer/index.ts +++ b/test/runtime-puppeteer/index.ts @@ -75,9 +75,6 @@ describe('runtime (puppeteer)', () => { function runTest(dir, hydrate, is_first_run) { if (dir[0] === '.') return; - // MEMO: puppeteer can not execute Chromium properly with Node8,10 on Linux at GitHub actions. - const { version } = process; - if ((version.startsWith('v8.') || version.startsWith('v10.')) && process.platform === 'linux') return; const config = loadConfig(`${__dirname}/samples/${dir}/_config.js`); const solo = config.solo || /\.solo/.test(dir);