From 0ce709d96abb48c747f5c93033c9a80fe79ee3bc Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Fri, 16 Sep 2022 00:53:03 -0700 Subject: Make new HTTP client more stable --- test/bun.js/transpiler.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/bun.js/transpiler.test.js') diff --git a/test/bun.js/transpiler.test.js b/test/bun.js/transpiler.test.js index 3bb458697..3d3bcc109 100644 --- a/test/bun.js/transpiler.test.js +++ b/test/bun.js/transpiler.test.js @@ -141,22 +141,22 @@ describe("Bun.Transpiler", () => { x[x["y"] = 0] = "y"; })(x || (x = {})); })(second = first.second || (first.second = {})); -})(first || (first = {}))` +})(first || (first = {}))`; it("exported inner namespace", () => { ts.expectPrinted_(input3, output3); }); - const input4 = `export enum x { y }` + const input4 = `export enum x { y }`; const output4 = `export var x; (function(x) { x[x["y"] = 0] = "y"; -})(x || (x = {}))` +})(x || (x = {}))`; it("exported enum", () => { ts.expectPrinted_(input4, output4); }); - }) + }); describe("exports.replace", () => { const transpiler = new Bun.Transpiler({ -- cgit v1.2.3