From bfbf5fde88d6943756210275302185ea5890bc21 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 23 Aug 2021 19:55:08 +0800 Subject: [PATCH] chore: no need to test `dev` & `build` separately They're covered by the unit & e2e tests --- test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test.js b/test.js index 6746a2f8..51fe1561 100644 --- a/test.js +++ b/test.js @@ -8,8 +8,6 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url)) const playgroundDir = path.resolve(__dirname, './playground/') for (const projectName of fs.readdirSync(playgroundDir)) { - // TODO: test `dev` & `build` commands - if (projectName.endsWith('with-tests')) { console.log(`Running unit tests in ${projectName}`) const unitTestResult = spawnSync('pnpm', ['test:unit:ci'], { -- 2.39.5