Skip to content

Commit

Permalink
foundry test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bunsenstraat committed Jan 27, 2025
1 parent bbe485b commit ef0ca6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/remix-ide-e2e/src/tests/remixd.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ async function installFoundry(): Promise<void> {
server.stdout.on('data', function (data) {
console.log(data.toString())
if (
data.toString().includes("foundryup: done!")
data.toString().includes("foundryup: use - chisel 0.3.0")
) {
console.log('resolving')
resolve()
Expand Down
2 changes: 1 addition & 1 deletion apps/remixdesktop/test/tests/app/foundry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async function installFoundry(): Promise<void> {
server.stdout.on('data', function (data) {
console.log(data.toString())
if (
data.toString().includes("foundryup: done!")
data.toString().includes("foundryup: use - chisel 0.3.0")
) {
console.log('resolving')
resolve()
Expand Down

0 comments on commit ef0ca6e

Please sign in to comment.