Skip to content

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 (#2373)
  • Loading branch information
steveluscher committed Mar 23, 2024
1 parent 94f2053 commit 4402f35
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 4402f35

Please sign in to comment.