From 1e75a978e5bb378f16277854cba0de449e59f82c Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Fri, 25 Aug 2023 04:00:23 -0700 Subject: Skip disabled test --- test/transpiler/transpiler.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') 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`); -- cgit v1.2.3