Skip to content

Commit

Permalink
Update test refs
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Aug 31, 2023
1 parent 7f05662 commit c54bb36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { displayB } from "../packages/b/src";
import { displayB } from "../packages/b/src/index.js";
async function display() {
const displayA = await import("../packages/a/src").then((c)=>c.displayA);
const displayA = await import("../packages/a/src/index.js").then((c)=>c.displayA);
console.log(displayA());
console.log(displayB());
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import o from ".";
import o from "./index.js";
export default function bar() {
console.log(o);
}

0 comments on commit c54bb36

Please sign in to comment.