Skip to content

Commit

Permalink
tests: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hugocaillard committed Jan 24, 2025
1 parent 598d69a commit 5c35a3a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ jobs:
with:
name: wasm-artifacts
path: components/clarinet-sdk-wasm
- name: Display structure of downloaded files
run: ls -R components/clarinet-sdk-wasm

- name: Install dependencies
run: npm ci
Expand Down
3 changes: 1 addition & 2 deletions components/clarinet-sdk/node/tests/simnet-usage.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,7 @@ describe("the sdk handles multiple manifests project", () => {
const expectedErr = `error: unexpected ')'\n--> ${manifestPath}:5:2\n)) ;; extra \`)\`\n`;

expect(async () => {
const manifestPath = path.join("tests", "fixtures", "InvalidManifest.toml");
await initSimnet(manifestPath);
await initSimnet("tests/fixtures/InvalidManifest.toml");
}).rejects.toThrow(expectedErr);
});
});

0 comments on commit 5c35a3a

Please sign in to comment.