From c2f3ea5d6914e463157e20aba5986af20095402c Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Tue, 23 Aug 2022 20:17:47 -0500 Subject: [PATCH] unset CI env for dev test --- test/development/typescript-auto-install/index.test.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/development/typescript-auto-install/index.test.ts b/test/development/typescript-auto-install/index.test.ts index 4f5cca72d8ea..ec794f3a4aeb 100644 --- a/test/development/typescript-auto-install/index.test.ts +++ b/test/development/typescript-auto-install/index.test.ts @@ -17,6 +17,16 @@ describe('typescript-auto-install', () => { } `, }, + env: { + // unset CI env as this skips the auto-install behavior + // being tested + CI: '', + CIRCLECI: '', + GITHUB_ACTIONS: '', + CONTINUOUS_INTEGRATION: '', + RUN_ID: '', + BUILD_NUMBER: '', + }, startCommand: 'yarn next dev', installCommand: 'yarn', dependencies: {},