diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2082d2cfba..fb45f685ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: pnpm - run: pnpm install --frozen-lockfile - - run: node node_modules/puppeteer/install.js + - run: pnpm playwright install chromium - run: pnpm test:integration env: CI: true diff --git a/test/custom-elements/samples/no-missing-prop-warnings/test.js b/test/custom-elements/samples/no-missing-prop-warnings/test.js index cc62dab2fd..f03d1787b8 100644 --- a/test/custom-elements/samples/no-missing-prop-warnings/test.js +++ b/test/custom-elements/samples/no-missing-prop-warnings/test.js @@ -2,8 +2,6 @@ import * as assert from 'assert'; import { tick } from 'svelte'; import './main.svelte'; -console.log('ello'); - export default async function (target) { const warnings = []; const warn = console.warn; diff --git a/test/test.js b/test/test.js index 6944d97c58..34adba7e00 100644 --- a/test/test.js +++ b/test/test.js @@ -9,7 +9,7 @@ require('../internal'); console.clear(); const test_folders = glob('*/index.js', { cwd: 'test' }); -const solo_folders = test_folders.filter((folder) => /custom-elements/.test(folder)); +const solo_folders = test_folders.filter((folder) => /(puppeteer)/.test(folder)); if (solo_folders.length) { if (process.env.CI) {