From f71bbe5d28872047b1e425dd576de95e8e7bfdbb Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 3 Aug 2021 11:56:15 +0200 Subject: [PATCH] e2e-test: run yarn tsc:full on new apps We encounetered errors with tsc:full on a newly created-app. So it should be verified that the command works Co-authored-by: Mike Lewis Signed-off-by: Himanshu Mishra --- packages/e2e-test/src/commands/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/e2e-test/src/commands/run.ts b/packages/e2e-test/src/commands/run.ts index e4072872d1..94bb1dd7f5 100644 --- a/packages/e2e-test/src/commands/run.ts +++ b/packages/e2e-test/src/commands/run.ts @@ -234,7 +234,7 @@ async function createApp( for (const cmd of [ 'install', - 'tsc', + 'tsc:full', 'build', 'lint:all', 'prettier:check',