Skip to content

Commit

Permalink
chore: use the same sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Nov 14, 2024
1 parent adf1279 commit db0a871
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/util.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ export function cleanLocal() {
}

export async function linkLocalLib(folder) {
await exec("npm link @aeternity/aeproject", {
await exec("npm i .. -D", {
cwd: folder ? path.join(cwd, folder) : cwd,
});
await exec("npm i ../node_modules/@aeternity/aepp-sdk", {
cwd: folder ? path.join(cwd, folder) : cwd,
});
}

0 comments on commit db0a871

Please sign in to comment.