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 7e39064 commit 14528e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 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: 2 additions & 1 deletion components/clarinet-sdk/node/tests/simnet-usage.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,8 @@ describe("the simnet can execute commands", () => {

describe("the sdk handles multiple manifests project", () => {
it("handle invalid project", () => {
const manifestPath = path.join(process.cwd(), "tests/fixtures/contracts/invalid.clar");
// the lsp displays paths with the unix notation, hence why we are hardcoding the contract path with `/`
const manifestPath = `${process.cwd()}/tests/fixtures/contracts/invalid.clar`;
const expectedErr = `error: unexpected ')'\n--> ${manifestPath}:5:2\n)) ;; extra \`)\`\n`;

expect(async () => {
Expand Down

0 comments on commit 14528e7

Please sign in to comment.