fix: tests
This commit is contained in:
@@ -5,16 +5,7 @@ bun_path="$1"
|
||||
workdir="$(mktemp -d)"
|
||||
trap 'rm -rf "${workdir}"' EXIT
|
||||
|
||||
cat > "${workdir}/package.json" <<'JSON'
|
||||
{
|
||||
"name": "stale-lockfile-test",
|
||||
"version": "1.0.0"
|
||||
}
|
||||
JSON
|
||||
|
||||
"${bun_path}" install --cwd "${workdir}" >/dev/null
|
||||
|
||||
cat > "${workdir}/package.json" <<'JSON'
|
||||
cat >"${workdir}/package.json" <<'JSON'
|
||||
{
|
||||
"name": "stale-lockfile-test",
|
||||
"version": "1.0.0",
|
||||
@@ -24,6 +15,18 @@ cat > "${workdir}/package.json" <<'JSON'
|
||||
}
|
||||
JSON
|
||||
|
||||
"${bun_path}" install --cwd "${workdir}" >/dev/null
|
||||
|
||||
cat >"${workdir}/package.json" <<'JSON'
|
||||
{
|
||||
"name": "stale-lockfile-test",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"left-pad": "1.1.3"
|
||||
}
|
||||
}
|
||||
JSON
|
||||
|
||||
set +e
|
||||
output="$(${bun_path} install --cwd "${workdir}" --frozen-lockfile 2>&1)"
|
||||
code=$?
|
||||
@@ -34,7 +37,7 @@ if [[ ${code} -eq 0 ]]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ "${output}" != *"lockfile"* && "${output}" != *"frozen"* ]]; then
|
||||
if [[ ${output} != *"lockfile"* && ${output} != *"frozen"* ]]; then
|
||||
echo "Expected lockfile-related error, got:" >&2
|
||||
echo "${output}" >&2
|
||||
exit 1
|
||||
|
||||
Reference in New Issue
Block a user