From b5810163e913e8c95a7a0a6dee039bc102e3c987 Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Tue, 9 May 2023 21:50:14 -0400 Subject: [PATCH] Change `yarn test` to default to experimental (#26741) The idea is that the default `yarn test` command should be the one that includes the most bleeding edge features, because during development you probably want as many features enabled as possible. That used to be `www-modern` but nowadays it's `experimental` because we've landed a bunch of async actions stuff in experimental but it isn't yet being tested at Meta. So this switches the default to `experimental`. --- scripts/jest/jest-cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/jest/jest-cli.js b/scripts/jest/jest-cli.js index 3d8e147da9..dd36597e29 100644 --- a/scripts/jest/jest-cli.js +++ b/scripts/jest/jest-cli.js @@ -47,7 +47,7 @@ const argv = yargs describe: 'Run with the given release channel.', requiresArg: true, type: 'string', - default: 'www-modern', + default: 'experimental', choices: ['experimental', 'stable', 'www-classic', 'www-modern'], }, env: {