Skip to content

Commit 550d4de

Browse files
authored
Merge pull request #24 from iExecBlockchainComputing/feature/formatting-sponsor
update header and formatting
2 parents 60f469d + 50d1bdb commit 550d4de

File tree

6 files changed

+395
-451
lines changed

6 files changed

+395
-451
lines changed

.mocharc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"extension": ["ts"],
33
"spec": "itest/**/*.ts",
44
"require": ["ts-node/register"],
5-
"timeout": 600000
5+
"timeout": 1000000
66
}

docker/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM node:22
22
WORKDIR /iexec-poco-subgraph
3+
RUN apt-get update && apt-get install -y git
34
COPY package*.json .
45
RUN npm ci
56
COPY schema.graphql .

itest/integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('Integration tests', () => {
2727
),
2828
);
2929
await environment.up();
30-
const secondsToWait = 5;
30+
const secondsToWait = 10;
3131
console.log(
3232
`Waiting ${secondsToWait}s for graphnode to ingest a few blocks before querying it..`,
3333
);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"create": "graph create ${NETWORK_NAME:-bellecour}/poco --node ${GRAPHNODE_URL:-http://localhost:8020}",
1313
"deploy": "graph deploy ${NETWORK_NAME:-bellecour}/poco --node ${GRAPHNODE_URL:-http://localhost:8020} --ipfs ${IPFS_URL:-http://localhost:5001} --version-label ${VERSION_LABEL:-bellecour/poco-v5}",
1414
"deploy:all": "npm run build && npm run create && npm run deploy",
15-
"itest": "DEBUG=testcontainers:* mocha"
15+
"itest": "DEBUG=:* mocha"
1616
},
1717
"lint-staged": {
1818
"*.{js,ts}": [

0 commit comments

Comments
 (0)