From 8c5798c0bca59f33279b3e85bf99f5c7b62f01d5 Mon Sep 17 00:00:00 2001 From: Alex Kirszenberg Date: Thu, 4 May 2023 17:47:00 +0200 Subject: [PATCH] Fix failing test --- .../tests/integration/turbopack/basic/error/input/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/next-swc/crates/next-dev-tests/tests/integration/turbopack/basic/error/input/index.js b/packages/next-swc/crates/next-dev-tests/tests/integration/turbopack/basic/error/input/index.js index cf5052a14f396..79525afac9661 100644 --- a/packages/next-swc/crates/next-dev-tests/tests/integration/turbopack/basic/error/input/index.js +++ b/packages/next-swc/crates/next-dev-tests/tests/integration/turbopack/basic/error/input/index.js @@ -1,6 +1,6 @@ it('should throw a good error when parsing file fails', async () => { await expect(import('./broken')).rejects.toMatchObject({ message: - "Could not parse module '[project]/packages/next-swc/crates/next-dev-tests/tests/integration/turbopack/basic/error/input/broken.js'", + "Could not parse module '[project]/packages/next-swc/crates/next-dev-tests/tests/temp/turbopack/basic/error/input/broken.js'", }) })