From a1615e8346415d02003d9c10c75eff4289c73f4c Mon Sep 17 00:00:00 2001 From: Victor Savkin Date: Mon, 16 Nov 2020 13:09:23 -0500 Subject: [PATCH] fix(repo): change e2e tests setup to use a different version --- scripts/create-playground.sh | 4 ++-- scripts/e2e.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/create-playground.sh b/scripts/create-playground.sh index 9d4f775cf6b7c..36c1161b13a7b 100755 --- a/scripts/create-playground.sh +++ b/scripts/create-playground.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -./scripts/link.sh 9999.0.1 +./scripts/link.sh 9999.0.2 rm -rf tmp mkdir -p tmp/angular mkdir -p tmp/nx -PUBLISHED_VERSION=9999.0.1 npm_config_registry=http://localhost:4872/ jest --maxWorkers=1 -c "./build/e2e/jest-config.js" ./build/e2e/commands/create-playground.test.js +PUBLISHED_VERSION=9999.0.2 npm_config_registry=http://localhost:4872/ jest --maxWorkers=1 -c "./build/e2e/jest-config.js" ./build/e2e/commands/create-playground.test.js diff --git a/scripts/e2e.ts b/scripts/e2e.ts index 4aeedc4718305..ae31778b6ddf2 100755 --- a/scripts/e2e.ts +++ b/scripts/e2e.ts @@ -7,7 +7,7 @@ const kill = require('tree-kill'); const asyncExec = promisify(exec); let localRegistryProcess; -process.env.PUBLISHED_VERSION = `9999.0.1`; +process.env.PUBLISHED_VERSION = `9999.0.2`; process.env.npm_config_registry = `http://localhost:4872/`; process.env.YARN_REGISTRY = process.env.npm_config_registry; @@ -109,7 +109,7 @@ async function runTest() { .join(','); } - execSync(`./scripts/package.sh 9999.0.1 "~10.0.0" "3.9.3" "2.0.4"`, { + execSync(`./scripts/package.sh 9999.0.2 "~10.0.0" "3.9.3" "2.0.4"`, { stdio: [0, 1, 2], }); execSync(`rm -rf tmp`);