67 lines
2.3 KiB
Bash
Executable File
67 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#==============================================================================#
|
|
# SETUP #
|
|
#==============================================================================#
|
|
|
|
# Start in scripts/integration-tests/ even if run from root directory
|
|
cd "$(dirname "$0")" || exit
|
|
root="$PWD"
|
|
|
|
source utils/local-registry.sh
|
|
source utils/cleanup.sh
|
|
|
|
# Echo every command being executed
|
|
set -x
|
|
|
|
# Clone jest
|
|
git clone --depth=1 https://github.com/facebook/jest /tmp/jest
|
|
cd /tmp/jest || exit
|
|
|
|
# Update @babel/* dependencies
|
|
bump_deps="$root/utils/bump-babel-dependencies.js"
|
|
node "$bump_deps"
|
|
for d in ./packages/*/
|
|
do
|
|
(cd "$d"; node "$bump_deps")
|
|
done
|
|
|
|
#==============================================================================#
|
|
# ENVIRONMENT #
|
|
#==============================================================================#
|
|
node -v
|
|
yarn --version
|
|
python --version
|
|
|
|
#==============================================================================#
|
|
# TEST #
|
|
#==============================================================================#
|
|
|
|
# Workaround for https://github.com/babel/babel/pull/12567
|
|
node -e '
|
|
let snapshots = fs.readFileSync("packages/jest-message-util/src/__tests__/__snapshots__/messages.test.ts.snap", "utf8");
|
|
snapshots = snapshots.replace(/(?<!^<dim>.*)\| <\/>/gm, "|<\/> ");
|
|
fs.writeFileSync("packages/jest-message-util/src/__tests__/__snapshots__/messages.test.ts.snap", snapshots);
|
|
'
|
|
|
|
if [ "$BABEL_8_BREAKING" = true ] ; then
|
|
# This option is removed in Babel 8
|
|
sed -i 's/allowDeclareFields: true,\?/\/* allowDeclareFields: true *\//g' babel.config.js
|
|
fi
|
|
|
|
startLocalRegistry "$root"/verdaccio-config.yml
|
|
yarn install
|
|
yarn dedupe '@babel/*'
|
|
yarn build
|
|
|
|
# The full test suite takes about 20mins on CircleCI. We run only a few of them
|
|
# to speed it up.
|
|
# The goals of this e2e test are:
|
|
# 1) Check that the typescript compilation isn't completely broken
|
|
# 2) Make sure that we don't accidentally break jest's usage of the Babel API
|
|
CI=true yarn test-ci-partial packages
|
|
CI=true yarn test-ci-partial e2e/__tests__/babel
|
|
CI=true yarn test-ci-partial e2e/__tests__/transform
|
|
|
|
cleanup
|