rsnext/scripts/test-pnp.sh
2021-10-25 14:00:15 -05:00

46 lines
928 B
Bash
Executable file

declare -a testCases=(
# Tests the webpack require hook
"progressive-web-app"
"with-eslint"
"with-typescript"
"with-next-sass"
# Tests @next/mdx
"with-mdx"
# Tests babel config
"with-styled-components"
)
set -e
set -x
# Speeds up testing locally
export CI=1
rm -rf ./e2e-tests
initialDir=$(pwd)
for testCase in "${testCases[@]}"
do
cd $initialDir
echo "--- Testing $testCase ---"
mkdir -p "./e2e-tests/$testCase"
cp -r "./examples/$testCase/." "./e2e-tests/$testCase"
cd "./e2e-tests/$testCase"
# TODO: remove after able to load bindings with YarnPnP
echo '{"presets": ["next/babel"]}' > .babelrc
touch yarn.lock
yarn set version berry
# Temporary fix for https://github.com/yarnpkg/berry/issues/2514:
yarn set version from sources
yarn config set pnpFallbackMode none
yarn config set enableGlobalCache true
yarn link --all --private -r ../..
yarn build --no-lint
done