Skip to content

Commit

Permalink
Update test refs
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed May 8, 2024
1 parent caeb78b commit 4f32e08
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import "./src/rel.decorator";
import "./src/rel.decorator.js";
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import boo from "./src/utils/shared/foo/boo";
import boo from "./src/utils/shared/foo/boo.js";
console.log(boo());
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import "./src/rel.decorator";
import "./src/rel.decorator.js";
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
async function main() {
const addFunction = (await import("./add")).default // This doesn't work
const addFunction = (await import("./add.js")).default // This doesn't work
;
console.log('2 + 3 =', addFunction(2, 3));
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import addFunction from "./add";
import addFunction from "./add.js";
async function main() {
console.log('2 + 3 =', addFunction(2, 3));
}

0 comments on commit 4f32e08

Please sign in to comment.