summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/bundle.test.out
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2021-12-08 19:12:14 -0500
committerGitHub <noreply@github.com>2021-12-08 19:12:14 -0500
commit1507b8c9843262d6514ed61fdba115671dfb7bfe (patch)
tree963e47cf71c5f4bdd457308c3f82becc106c9d27 /cli/tests/testdata/bundle.test.out
parent318f48f9adc486e95dcc5f86fd0a1848c6df51f6 (diff)
fix: upgrade swc fixing many bundling and `--no-check` bugs (#13025)
Diffstat (limited to 'cli/tests/testdata/bundle.test.out')
-rw-r--r--cli/tests/testdata/bundle.test.out16
1 files changed, 8 insertions, 8 deletions
diff --git a/cli/tests/testdata/bundle.test.out b/cli/tests/testdata/bundle.test.out
index 030c09295..6b1c109d3 100644
--- a/cli/tests/testdata/bundle.test.out
+++ b/cli/tests/testdata/bundle.test.out
@@ -8,20 +8,20 @@ function returnsFoo() {
function printHello2() {
printHello();
}
-function returnsHi1() {
+function returnsHi() {
return "Hi";
}
-function returnsFoo21() {
+function returnsFoo2() {
return returnsFoo();
}
-function printHello31() {
+function printHello3() {
printHello2();
}
-function throwsError1() {
+function throwsError() {
throw Error("exception from mod1");
}
-export { returnsHi1 as returnsHi };
-export { returnsFoo21 as returnsFoo2 };
-export { printHello31 as printHello3 };
-export { throwsError1 as throwsError };
+export { returnsHi as returnsHi };
+export { returnsFoo2 as returnsFoo2 };
+export { printHello3 as printHello3 };
+export { throwsError as throwsError };