diff options
author | 2023-08-25 04:00:23 -0700 | |
---|---|---|
committer | 2023-08-25 04:00:23 -0700 | |
commit | 1e75a978e5bb378f16277854cba0de449e59f82c (patch) | |
tree | f5e27053832bc3585438f99fe5de0d8013a48a4e | |
parent | 95e8c24db157436a71904ec8a6832b728ba87e52 (diff) | |
download | bun-1e75a978e5bb378f16277854cba0de449e59f82c.tar.gz bun-1e75a978e5bb378f16277854cba0de449e59f82c.tar.zst bun-1e75a978e5bb378f16277854cba0de449e59f82c.zip |
Skip disabled test
-rw-r--r-- | test/transpiler/transpiler.test.js | 2 |
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`); |