From 19f0cff726e03045f407fd198263ead56ac03dbf Mon Sep 17 00:00:00 2001 From: Conduitry Date: Sat, 22 Dec 2018 07:03:44 -0500 Subject: [PATCH] fix runtime tests --- test/runtime/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtime/index.js b/test/runtime/index.js index 58ef9d8734..a230e8f571 100644 --- a/test/runtime/index.js +++ b/test/runtime/index.js @@ -233,7 +233,7 @@ describe("runtime", () => { { resolveId: (importee, importer) => { if (importee.startsWith('svelte/')) { - return importee.replace('svelte', process.cwd()); + return importee.replace('svelte', process.cwd()) + '.mjs'; } } }