From f7e4eb83694aa007a492ef66c28ffbe6a2dae791 Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Tue, 7 Mar 2023 12:22:34 -0800 Subject: Reorganize tests (#2332) --- test/bun.js/inline.macro.js | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 test/bun.js/inline.macro.js (limited to 'test/bun.js/inline.macro.js') diff --git a/test/bun.js/inline.macro.js b/test/bun.js/inline.macro.js deleted file mode 100644 index 8b157aa38..000000000 --- a/test/bun.js/inline.macro.js +++ /dev/null @@ -1,23 +0,0 @@ -export function whatDidIPass(expr, ctx) { - return ctx; -} - -export function promiseReturningFunction(expr, ctx) { - return new Promise((resolve, reject) => { - setTimeout(() => { - resolve(1); - }, 1); - }); -} - -export function promiseReturningCtx(expr, ctx) { - return new Promise((resolve, reject) => { - setTimeout( - ctx => { - resolve(ctx); - }, - 1, - ctx, - ); - }); -} -- cgit v1.2.3