From e7d9f68678dee468b0089bf3bff03734e1989322 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 3 Aug 2021 10:51:55 +0200 Subject: [PATCH] e2e: run prettier check for newly created app Co-authored-by: Mike Lewis Signed-off-by: Himanshu Mishra --- packages/e2e-test/src/commands/run.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/e2e-test/src/commands/run.ts b/packages/e2e-test/src/commands/run.ts index c205b4f527..e4072872d1 100644 --- a/packages/e2e-test/src/commands/run.ts +++ b/packages/e2e-test/src/commands/run.ts @@ -232,7 +232,14 @@ async function createApp( print('Test app created'); - for (const cmd of ['install', 'tsc', 'build', 'lint:all', 'test:all']) { + for (const cmd of [ + 'install', + 'tsc', + 'build', + 'lint:all', + 'prettier:check', + 'test:all', + ]) { print(`Running 'yarn ${cmd}' in newly created app`); await runPlain(['yarn', cmd], { cwd: appDir }); }