Skip to content

Commit

Permalink
Fixed wrong paths in Readme example code tests configs
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgitiota committed Jan 17, 2025
1 parent ede9a82 commit f19c906
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ _Cargo.toml_
Test this example using /~https://github.com/anko/txm: `txm README.md`
!test program
cd ../..
cd ../../..
mkdir tmp
cat | sed -e 's#identity_iota = { git = "[^"]*", tag = "[^"]*"#identity_iota = { path = "../identity_iota"#' > tmp/Cargo.toml
echo '[workspace]' >>tmp/Cargo.toml
Expand Down
2 changes: 1 addition & 1 deletion bindings/wasm/identity_wasm/tests/txm_readme_rust.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const spawn = require("child_process").spawn;

describe("Test TXM", () => {
before((done) => {
let process = spawn("txm", ["../../README.md"]);
let process = spawn("txm", ["../../../README.md"]);
process.stdout.on("data", function(data) {
console.log(data.toString());
});
Expand Down

0 comments on commit f19c906

Please sign in to comment.