From bfe791861dd9e0ee326cbfc7625a1d058ada90fc Mon Sep 17 00:00:00 2001 From: reggi Date: Thu, 23 Jan 2025 18:00:13 -0500 Subject: [PATCH] fix test --- test/apply/esm.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/apply/esm.js b/test/apply/esm.js index 12ee9bf0..7a38ec57 100644 --- a/test/apply/esm.js +++ b/test/apply/esm.js @@ -17,8 +17,7 @@ t.test('basic', async t => { }, }) await s.apply() - - const file = await s.readFile('file.js') + const file = await s.readFile('content_dir/file.js') t.match(file, 'var x = 1;') })