Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Since tests depend on _implementations_, make sure to build upstreams…
Browse files Browse the repository at this point in the history
… before running tests
  • Loading branch information
steveluscher committed Mar 23, 2024
1 parent 65f262c commit 7b51add
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
"outputs": []
},
"test:live-with-test-validator": {
"dependsOn": ["^compile:js"],
"inputs": ["babel.config.json", "src/**", "test/**"],
"outputs": []
},
Expand All @@ -88,12 +89,12 @@
"outputs": []
},
"test:unit:browser": {
"dependsOn": ["compile:js"],
"dependsOn": ["^compile:js"],
"inputs": ["src/**"],
"outputs": []
},
"test:unit:node": {
"dependsOn": ["compile:js"],
"dependsOn": ["^compile:js"],
"inputs": ["src/**"],
"outputs": []
},
Expand All @@ -110,7 +111,7 @@
"outputs": []
},
"@solana/web3.js#test:unit:node": {
"dependsOn": ["compile:js"],
"dependsOn": ["^compile:js"],
"inputs": ["babel.config.json", "src/**", "test/**"],
"outputs": []
},
Expand Down

0 comments on commit 7b51add

Please sign in to comment.