From 94733549ba1c249e4a77339b6569fb1ebedb8e59 Mon Sep 17 00:00:00 2001 From: ling1726 Date: Fri, 12 Mar 2021 19:27:16 +0000 Subject: [PATCH] Fix release CI test (#17397) Recently #17161 changed `react-menu` to use native `jest` command for testing which does not support the `--production` flag --- azure-pipelines.release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.release.yml b/azure-pipelines.release.yml index 73114e424767a2..f0201ef2b126c4 100644 --- a/azure-pipelines.release.yml +++ b/azure-pipelines.release.yml @@ -62,7 +62,7 @@ steps: # test, lint, bundle using lage cached build from previous step (omit --no-cache) - script: | - yarn run:published test --production + yarn run:published test displayName: yarn test - script: |