blob: 2f64242eb1d0214dc2cc97613090cbb2f7521bcc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/bin/bash
if [ -z "$1" ]; then
echo "Usage: $0 <test name> <use_esbuild>"
echo "If you pass the second argument as anything, this will use esbuild instead of bun build."
exit 1
fi
# using esbuild within bun-debug is extremely slow
if [ -z "$2" ]; then
BUN=$(which bd 2>/dev/null || which bun-debug 2>/dev/null || which bun 2>/dev/null)
else
BUN=$(which bun 2>/dev/null)
fi
__dirname="$(dirname $(realpath "$0"))"
cd "$__dirname"
clear
printf "bun build test helper: $@"
printf "\n\n"
export BUN_BUNDLER_TEST_DEBUG=1
export BUN_BUNDLER_TEST_FILTER=$1
if [ -n "$2" ]; then
export BUN_BUNDLER_TEST_USE_ESBUILD=1
fi
export FORCE_COLOR=1
$BUN test bundler_ esbuild/ 2>&1 \
| perl -ne 'print unless /^\e\[0m$/' \
| grep -v '\x1b\[0m\x1b\[33m-\x1b\[2m \x1b\[0m\x1b\[2mbundler' --text \
| grep -v ".test.ts:$" --text \
| tee /tmp/run-single-bundler-test.txt \
| grep "root:" -v --text
symlinkDir=$(cat /tmp/run-single-bundler-test.txt | grep "root:" --text | cut -d " " -f 2)
rm /tmp/run-single-bundler-test.txt
rm $__dirname/out -rf
if [ -e "$symlinkDir" ]; then
ln -s "$symlinkDir" $__dirname/out
fi
|