Skip to content

Commit ef0ca6e

Browse files
author
bunsenstraat
committed
foundry test fix
1 parent bbe485b commit ef0ca6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/remix-ide-e2e/src/tests/remixd.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ async function installFoundry(): Promise<void> {
527527
server.stdout.on('data', function (data) {
528528
console.log(data.toString())
529529
if (
530-
data.toString().includes("foundryup: done!")
530+
data.toString().includes("foundryup: use - chisel 0.3.0")
531531
) {
532532
console.log('resolving')
533533
resolve()

apps/remixdesktop/test/tests/app/foundry.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async function installFoundry(): Promise<void> {
8989
server.stdout.on('data', function (data) {
9090
console.log(data.toString())
9191
if (
92-
data.toString().includes("foundryup: done!")
92+
data.toString().includes("foundryup: use - chisel 0.3.0")
9393
) {
9494
console.log('resolving')
9595
resolve()

0 commit comments

Comments
 (0)