Skip to content

Commit 0034326

Browse files
authored
fix(tests): fix E2E tests on Apple Silicon (#1007)
1 parent 25fc6ac commit 0034326

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

fendermint/testing/graph-test/Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ npm run graph-node
5757
5858
echo "Waiting for Graph node to start..."
5959
# Notice that subgraph node does takes a while to spin up
60-
sleep 30s
60+
sleep 30
6161
6262
npm run create-local
6363
npm run deploy-local

fendermint/testing/graph-test/subgraph/graph-node/docker-compose.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ version: '3'
22
services:
33
graph-node:
44
image: graphprotocol/graph-node:v0.27.0
5+
platform: linux/amd64
56
ports:
67
- '8000:8000'
78
- '8001:8001'
@@ -24,6 +25,7 @@ services:
2425
GRAPH_ETHEREUM_GENESIS_BLOCK_NUMBER: 1
2526
ipfs:
2627
image: ipfs/go-ipfs:v0.10.0
28+
platform: linux/amd64
2729
ports:
2830
- '5001:5001'
2931
postgres:

0 commit comments

Comments
 (0)