Skip to content

Commit

Permalink
finalize all testing
Browse files Browse the repository at this point in the history
  • Loading branch information
iainnash committed Nov 8, 2023
1 parent 28070ef commit bba8a69
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/foundry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,18 @@ jobs:
run: |
npx turbo run build
test_js:
strategy:
fail-fast: true

name: Test js package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install node deps and founry
uses: ./.github/actions/setup_deps

- name: Test js package
run: |
npx turbo run test:js
Expand Down
3 changes: 2 additions & 1 deletion packages/protocol-sdk/src/anvil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ async function waitForAnvilInit(anvil: any) {
}

export const anvilTest = test.extend<AnvilViemClientsTest>({
viemClients: async ({ task }, use) => {
viemClients: async ({task}, use) => {
console.log('setting up clients for ', task.name);
const port = Math.floor(Math.random() * 2000) + 4000;
const anvil = spawn(
"anvil",
Expand Down

0 comments on commit bba8a69

Please sign in to comment.