Skip to content

Commit

Permalink
fixup! refactor: lift test nada programs for improved visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-hm committed Nov 4, 2024
1 parent 250da15 commit 3626438
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion client-react-hooks/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"jsx": "react"
}
Expand Down
2 changes: 1 addition & 1 deletion client-vms/tests/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ export const PrivateKeyPerSuite = {
export const loadProgram = (name: string): Uint8Array => {
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const absolute = path.join(__dirname, "/tests-nada-programs/dist/", name);
const absolute = path.join(__dirname, "../tests-nada-programs/dist/", name);
return new Uint8Array(fs.readFileSync(absolute));
};

0 comments on commit 3626438

Please sign in to comment.