aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-08-25 04:00:23 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-08-25 04:00:23 -0700
commit1e75a978e5bb378f16277854cba0de449e59f82c (patch)
treef5e27053832bc3585438f99fe5de0d8013a48a4e /test
parent95e8c24db157436a71904ec8a6832b728ba87e52 (diff)
downloadbun-1e75a978e5bb378f16277854cba0de449e59f82c.tar.gz
bun-1e75a978e5bb378f16277854cba0de449e59f82c.tar.zst
bun-1e75a978e5bb378f16277854cba0de449e59f82c.zip
Skip disabled test
Diffstat (limited to 'test')
-rw-r--r--test/transpiler/transpiler.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transpiler/transpiler.test.js b/test/transpiler/transpiler.test.js
index c490abb51..a6c2dcf73 100644
--- a/test/transpiler/transpiler.test.js
+++ b/test/transpiler/transpiler.test.js
@@ -1742,7 +1742,7 @@ export const { dead } = { dead: "hello world!" };
expect(bunTranspiler.transformSync(input, object).trim()).toBe(output);
});
- it("rewrite string to length", () => {
+ it.skip("rewrite string to length", () => {
expectBunPrinted_(`export const foo = "a".length + "b".length;`, `export const foo = 2`);
// check rope string
expectBunPrinted_(`export const foo = ("a" + "b").length;`, `export const foo = 2`);