From dc6c0afcf1a7ffc5510bff04350fc1f6358da55b Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 17:10:10 -0800 Subject: [PATCH 01/19] add e2e to ci --- .circleci/config.yml | 11 +++++++++++ tests/e2e/graph-node/Dockerfile | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9a28caa7..8763420e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,8 +18,19 @@ jobs: - run: name: Run tests command: yarn test + test_e2e: + docker: + - image: "cimg/base:current" + resource_class: medium+ + steps: + - checkout + - setup_remote_docker + - run: + name: Run e2e tests + command: yarn test:e2e workflows: run-ci: jobs: - test + - test_e2e diff --git a/tests/e2e/graph-node/Dockerfile b/tests/e2e/graph-node/Dockerfile index b549620d..0e766ff3 100644 --- a/tests/e2e/graph-node/Dockerfile +++ b/tests/e2e/graph-node/Dockerfile @@ -1,3 +1,3 @@ -FROM graph-node:latest +FROM graphprotocol/graph-node:latest RUN ["apt", "update"] RUN ["apt-get", "install", "-y", "curl"] \ No newline at end of file From a7a920d3b7c63f13d49cc060e5b7b758902c6a73 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 17:12:21 -0800 Subject: [PATCH 02/19] Install --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8763420e..6ed3c60d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,6 +25,12 @@ jobs: steps: - checkout - setup_remote_docker + - node/install: + install-yarn: true + node-version: "18.15" + - node/install-packages: + pkg-manager: yarn + - run: node --version - run: name: Run e2e tests command: yarn test:e2e From 54c1d76aab62e80a5db2330d863bdb8c2d7a33d5 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 17:28:06 -0800 Subject: [PATCH 03/19] copy set up scripts --- docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 23a1d113..10977dc0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,4 +3,5 @@ RUN apk add --no-cache curl RUN apk add --no-cache git WORKDIR /usr/subgraph COPY . . +COPY ./tests/e2e/setup-scripts /usr/subgraph/setup-scripts CMD [ "yarn" ] \ No newline at end of file From 32fa9c4522b495817c91a435f3965ed4968eb0f0 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 17:34:02 -0800 Subject: [PATCH 04/19] Debug ls --- .circleci/config.yml | 3 +++ docker/Dockerfile | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ed3c60d..76e40201 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,6 +31,9 @@ jobs: - node/install-packages: pkg-manager: yarn - run: node --version + - run: + name: Print working directory and list contents + command: pwd && ls - run: name: Run e2e tests command: yarn test:e2e diff --git a/docker/Dockerfile b/docker/Dockerfile index 10977dc0..23a1d113 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,5 +3,4 @@ RUN apk add --no-cache curl RUN apk add --no-cache git WORKDIR /usr/subgraph COPY . . -COPY ./tests/e2e/setup-scripts /usr/subgraph/setup-scripts CMD [ "yarn" ] \ No newline at end of file From 6d7514d8beddd8cf79455ced2969875f742a41fd Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 17:42:25 -0800 Subject: [PATCH 05/19] Test echo --- .circleci/config.yml | 3 --- tests/e2e/setup-scripts/subgraph.sh | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 76e40201..6ed3c60d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,9 +31,6 @@ jobs: - node/install-packages: pkg-manager: yarn - run: node --version - - run: - name: Print working directory and list contents - command: pwd && ls - run: name: Run e2e tests command: yarn test:e2e diff --git a/tests/e2e/setup-scripts/subgraph.sh b/tests/e2e/setup-scripts/subgraph.sh index 170b8800..d773b944 100755 --- a/tests/e2e/setup-scripts/subgraph.sh +++ b/tests/e2e/setup-scripts/subgraph.sh @@ -1,5 +1,6 @@ #!/bin/sh yarn; +echo "HELLOOOOOO"; cp ./shared/test-config.json ./config/local.json; yarn prepare:local; yarn graph create --node $GRAPH_NODE artblocks/art-blocks; From 1133cf59d753a3895305283be3c8b5c744157f92 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 17:46:47 -0800 Subject: [PATCH 06/19] Change subgraph setup scripts path --- tests/e2e/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index a0c6b250..a6f29e34 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -72,7 +72,7 @@ services: IPFS: 'http://ipfs:5001' volumes: - shared-data:/usr/subgraph/shared - - ./setup-scripts:/usr/subgraph/setup-scripts + - ./tests/e2e/setup-scripts:/usr/subgraph/setup-scripts command: ./setup-scripts/subgraph.sh # We create an empty file called `subgraph-complete` in the shared # volume when the subgraph is deployed. We use this file as a From 748bde1afe300ac8c7104f2c3bc4519dfb227bb5 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 17:54:22 -0800 Subject: [PATCH 07/19] asdf --- tests/e2e/setup-scripts/subgraph.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/setup-scripts/subgraph.sh b/tests/e2e/setup-scripts/subgraph.sh index d773b944..ea99f14e 100755 --- a/tests/e2e/setup-scripts/subgraph.sh +++ b/tests/e2e/setup-scripts/subgraph.sh @@ -1,6 +1,6 @@ #!/bin/sh -yarn; echo "HELLOOOOOO"; +yarn; cp ./shared/test-config.json ./config/local.json; yarn prepare:local; yarn graph create --node $GRAPH_NODE artblocks/art-blocks; From 2e45b19c4b069892722cc7464d69978d36639c1b Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 17:58:31 -0800 Subject: [PATCH 08/19] Try to ls --- tests/e2e/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index a6f29e34..e97b137d 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -73,7 +73,7 @@ services: volumes: - shared-data:/usr/subgraph/shared - ./tests/e2e/setup-scripts:/usr/subgraph/setup-scripts - command: ./setup-scripts/subgraph.sh + command: ls && exit 1 # We create an empty file called `subgraph-complete` in the shared # volume when the subgraph is deployed. We use this file as a # healthcheck to ensure that the subgraph is deployed before From f0687e5294e628a1dd5d6b045b99d14369e16145 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 18:01:41 -0800 Subject: [PATCH 09/19] pwd --- tests/e2e/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index e97b137d..4724cbad 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -73,7 +73,7 @@ services: volumes: - shared-data:/usr/subgraph/shared - ./tests/e2e/setup-scripts:/usr/subgraph/setup-scripts - command: ls && exit 1 + command: pwd && ls && exit 1 # We create an empty file called `subgraph-complete` in the shared # volume when the subgraph is deployed. We use this file as a # healthcheck to ensure that the subgraph is deployed before From cac4e18d598ab4fcd30d6f11f4aa906b362cacf0 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 18:04:31 -0800 Subject: [PATCH 10/19] relative path --- tests/e2e/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index 4724cbad..a6f29e34 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -73,7 +73,7 @@ services: volumes: - shared-data:/usr/subgraph/shared - ./tests/e2e/setup-scripts:/usr/subgraph/setup-scripts - command: pwd && ls && exit 1 + command: ./setup-scripts/subgraph.sh # We create an empty file called `subgraph-complete` in the shared # volume when the subgraph is deployed. We use this file as a # healthcheck to ensure that the subgraph is deployed before From d0976a0216628550bfa552d5a0b2a21a7543eabb Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 18:08:54 -0800 Subject: [PATCH 11/19] asdf --- tests/e2e/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index a6f29e34..94f05633 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -73,7 +73,7 @@ services: volumes: - shared-data:/usr/subgraph/shared - ./tests/e2e/setup-scripts:/usr/subgraph/setup-scripts - command: ./setup-scripts/subgraph.sh + command: sh ./setup-scripts/subgraph.sh # We create an empty file called `subgraph-complete` in the shared # volume when the subgraph is deployed. We use this file as a # healthcheck to ensure that the subgraph is deployed before From c407f6a643666f668dde9bfb86f32b4eab3631c5 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 18:23:56 -0800 Subject: [PATCH 12/19] ls setup scripts --- tests/e2e/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index 94f05633..c0f1c8a8 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -73,7 +73,7 @@ services: volumes: - shared-data:/usr/subgraph/shared - ./tests/e2e/setup-scripts:/usr/subgraph/setup-scripts - command: sh ./setup-scripts/subgraph.sh + command: ls ./setup-scripts && exit 1 # We create an empty file called `subgraph-complete` in the shared # volume when the subgraph is deployed. We use this file as a # healthcheck to ensure that the subgraph is deployed before From 5a9d051f07edeafff1d6250904377962734fc2b4 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 18:34:25 -0800 Subject: [PATCH 13/19] More ls --- tests/e2e/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index c0f1c8a8..cea2f552 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -73,7 +73,7 @@ services: volumes: - shared-data:/usr/subgraph/shared - ./tests/e2e/setup-scripts:/usr/subgraph/setup-scripts - command: ls ./setup-scripts && exit 1 + command: ls ./tests/e2e && ls ./tests/e2e/setup-scripts # We create an empty file called `subgraph-complete` in the shared # volume when the subgraph is deployed. We use this file as a # healthcheck to ensure that the subgraph is deployed before From 6db3381f0aab8c3f3e2b9a71ef0160b0d2051488 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 21:30:27 -0800 Subject: [PATCH 14/19] Don't ignore tests --- .dockerignore | 1 - tests/e2e/setup-scripts/subgraph.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index 944095d9..496ad2f9 100644 --- a/.dockerignore +++ b/.dockerignore @@ -2,4 +2,3 @@ node_modules build contracts generated -tests \ No newline at end of file diff --git a/tests/e2e/setup-scripts/subgraph.sh b/tests/e2e/setup-scripts/subgraph.sh index ea99f14e..170b8800 100755 --- a/tests/e2e/setup-scripts/subgraph.sh +++ b/tests/e2e/setup-scripts/subgraph.sh @@ -1,5 +1,4 @@ #!/bin/sh -echo "HELLOOOOOO"; yarn; cp ./shared/test-config.json ./config/local.json; yarn prepare:local; From 2bd184919cc0d551e3c2560b3ea6cc3e31385261 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 22:10:07 -0800 Subject: [PATCH 15/19] Again --- tests/e2e/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index cea2f552..a6f29e34 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -73,7 +73,7 @@ services: volumes: - shared-data:/usr/subgraph/shared - ./tests/e2e/setup-scripts:/usr/subgraph/setup-scripts - command: ls ./tests/e2e && ls ./tests/e2e/setup-scripts + command: ./setup-scripts/subgraph.sh # We create an empty file called `subgraph-complete` in the shared # volume when the subgraph is deployed. We use this file as a # healthcheck to ensure that the subgraph is deployed before From a4853c74e181c601bb803419f7ce6d3450b6a2b6 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Tue, 19 Dec 2023 22:13:29 -0800 Subject: [PATCH 16/19] Full path --- tests/e2e/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index a6f29e34..fcd11702 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -73,7 +73,7 @@ services: volumes: - shared-data:/usr/subgraph/shared - ./tests/e2e/setup-scripts:/usr/subgraph/setup-scripts - command: ./setup-scripts/subgraph.sh + command: ./tests/e2e/setup-scripts/subgraph.sh # We create an empty file called `subgraph-complete` in the shared # volume when the subgraph is deployed. We use this file as a # healthcheck to ensure that the subgraph is deployed before From 0fa055146a75718b44cd4c5516fd1d48b93633b4 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Wed, 20 Dec 2023 11:11:40 -0800 Subject: [PATCH 17/19] No local volumes for CI --- .circleci/config.yml | 2 +- .dockerignore | 2 ++ docker/Dockerfile | 4 +++- package.json | 1 + tests/e2e/docker-compose.ci.yml | 11 +++++++++++ tests/e2e/docker-compose.local.yml | 5 ++++- tests/e2e/docker-compose.test.yml | 3 +++ tests/e2e/docker-compose.yml | 4 +--- 8 files changed, 26 insertions(+), 6 deletions(-) create mode 100644 tests/e2e/docker-compose.ci.yml diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ed3c60d..6222e5df 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,7 +33,7 @@ jobs: - run: node --version - run: name: Run e2e tests - command: yarn test:e2e + command: yarn test:e2e:ci workflows: run-ci: diff --git a/.dockerignore b/.dockerignore index 496ad2f9..efda7db7 100644 --- a/.dockerignore +++ b/.dockerignore @@ -2,3 +2,5 @@ node_modules build contracts generated +tests +!tests/e2e/setup-scripts/* \ No newline at end of file diff --git a/docker/Dockerfile b/docker/Dockerfile index 23a1d113..ee027785 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,4 +3,6 @@ RUN apk add --no-cache curl RUN apk add --no-cache git WORKDIR /usr/subgraph COPY . . -CMD [ "yarn" ] \ No newline at end of file +COPY ./tests/e2e/setup-scripts /usr/subgraph/setup-scripts +CMD [ "yarn" ] + diff --git a/package.json b/package.json index 9b954979..516b4c5f 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "build": "yarn codegen:generic && graph build", "test": "yarn codegen:generic && graph test -r", "test:e2e": "cd tests/e2e && docker compose -f docker-compose.yml -f docker-compose.test.yml up --exit-code-from runner", + "test:e2e:ci": "cd tests/e2e && docker compose -f docker-compose.yml -f docker-compose.ci.yml up --exit-code-from runner", "run:local": "cd tests/e2e && docker compose -f docker-compose.yml -f docker-compose.local.yml up", "coverage": "graph test -- -c", "deploy:mainnet-hosted": "yarn prepare:mainnet && graph deploy --product hosted-service --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ artblocks/art-blocks", diff --git a/tests/e2e/docker-compose.ci.yml b/tests/e2e/docker-compose.ci.yml new file mode 100644 index 00000000..e1d91ff5 --- /dev/null +++ b/tests/e2e/docker-compose.ci.yml @@ -0,0 +1,11 @@ +version: "3.8" +services: + runner: + build: runner + environment: + - SUBGRAPH_GRAPHQL_URL=http://graph-node:8000/subgraphs/name/artblocks/art-blocks + depends_on: + subgraph: + condition: service_healthy + volumes: + - shared-data:/usr/runner/shared diff --git a/tests/e2e/docker-compose.local.yml b/tests/e2e/docker-compose.local.yml index 3cf1c01b..e22bc7ed 100644 --- a/tests/e2e/docker-compose.local.yml +++ b/tests/e2e/docker-compose.local.yml @@ -9,4 +9,7 @@ services: - '8001:8001' - '8020:8020' - '8030:8030' - - '8040:8040' \ No newline at end of file + - '8040:8040' + subgraph: + volumes: + - ./setup-scripts:/usr/subgraph/setup-scripts \ No newline at end of file diff --git a/tests/e2e/docker-compose.test.yml b/tests/e2e/docker-compose.test.yml index cb96fb6c..638a4188 100644 --- a/tests/e2e/docker-compose.test.yml +++ b/tests/e2e/docker-compose.test.yml @@ -10,3 +10,6 @@ services: volumes: - shared-data:/usr/runner/shared - ./runner/__tests__:/usr/runner/__tests__ + subgraph: + volumes: + - ./setup-scripts:/usr/subgraph/setup-scripts \ No newline at end of file diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index fcd11702..4b0bd467 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -13,7 +13,6 @@ services: build: seed volumes: - shared-data:/usr/seed/shared - - ./setup-scripts:/usr/seed/setup-scripts depends_on: hardhat: condition: service_healthy @@ -72,8 +71,7 @@ services: IPFS: 'http://ipfs:5001' volumes: - shared-data:/usr/subgraph/shared - - ./tests/e2e/setup-scripts:/usr/subgraph/setup-scripts - command: ./tests/e2e/setup-scripts/subgraph.sh + command: ./setup-scripts/subgraph.sh # We create an empty file called `subgraph-complete` in the shared # volume when the subgraph is deployed. We use this file as a # healthcheck to ensure that the subgraph is deployed before From 1f9cf00a56c876bef8e7ae916f7163d2a63f734c Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Thu, 25 Jan 2024 10:33:28 -0800 Subject: [PATCH 18/19] Use inline docker image for graph node with dynamic base image --- package.json | 5 +++-- tests/e2e/docker-compose.yml | 7 ++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 516b4c5f..b70ca885 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,9 @@ "scripts": { "build": "yarn codegen:generic && graph build", "test": "yarn codegen:generic && graph test -r", - "test:e2e": "cd tests/e2e && docker compose -f docker-compose.yml -f docker-compose.test.yml up --exit-code-from runner", - "test:e2e:ci": "cd tests/e2e && docker compose -f docker-compose.yml -f docker-compose.ci.yml up --exit-code-from runner", + "test:e2e": "cd tests/e2e && GRAPH_NODE_BASE_IMAGE=graphprotocol/graph-node:latest docker compose -f docker-compose.yml -f docker-compose.test.yml up --exit-code-from runner", + "test:e2e:m1": "cd tests/e2e && GRAPH_NODE_BASE_IMAGE=graph-node:latest docker compose -f docker-compose.yml -f docker-compose.test.yml up --exit-code-from runner", + "test:e2e:ci": "cd tests/e2e && GRAPH_NODE_BASE_IMAGE=graphprotocol/graph-node:latest docker compose -f docker-compose.yml -f docker-compose.ci.yml up --exit-code-from runner", "run:local": "cd tests/e2e && docker compose -f docker-compose.yml -f docker-compose.local.yml up", "coverage": "graph test -- -c", "deploy:mainnet-hosted": "yarn prepare:mainnet && graph deploy --product hosted-service --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ artblocks/art-blocks", diff --git a/tests/e2e/docker-compose.yml b/tests/e2e/docker-compose.yml index 4b0bd467..1e1a0311 100644 --- a/tests/e2e/docker-compose.yml +++ b/tests/e2e/docker-compose.yml @@ -17,7 +17,12 @@ services: hardhat: condition: service_healthy graph-node: - build: graph-node + build: + context: . + dockerfile_inline: | + FROM ${GRAPH_NODE_BASE_IMAGE} + RUN ["apt", "update"] + RUN ["apt-get", "install", "-y", "curl"] depends_on: - ipfs - postgres From 7fb7862cd287b82bb37bcc2ad026df0c7b5ed3d6 Mon Sep 17 00:00:00 2001 From: Ben Yoshiwara Date: Thu, 25 Jan 2024 10:33:51 -0800 Subject: [PATCH 19/19] Remove unused graph-node docker file --- tests/e2e/graph-node/Dockerfile | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 tests/e2e/graph-node/Dockerfile diff --git a/tests/e2e/graph-node/Dockerfile b/tests/e2e/graph-node/Dockerfile deleted file mode 100644 index 0e766ff3..00000000 --- a/tests/e2e/graph-node/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -FROM graphprotocol/graph-node:latest -RUN ["apt", "update"] -RUN ["apt-get", "install", "-y", "curl"] \ No newline at end of file