Skip to content

Commit

Permalink
fix: more seed shenanigans
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 committed Feb 3, 2024
1 parent 16d0b2e commit 672ed83
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 61 deletions.
2 changes: 1 addition & 1 deletion ceramic-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"http-api": {
"cors-allowed-origins": [".*"],
"admin-dids": [
"did:key:z6MktFJhcCcqN477CeXGknSPK4RXirT9gd85vA7RFumFKdit#z6MktFJhcCcqN477CeXGknSPK4RXirT9gd85vA7RFumFKdit"
"did:key:z6MksWv1PBRXFap3vqQ1jrkZHSwZ4SC95KZEGCrzq4SELm2D#z6MksWv1PBRXFap3vqQ1jrkZHSwZ4SC95KZEGCrzq4SELm2D"
]
},
"ipfs": {
Expand Down
12 changes: 1 addition & 11 deletions ci/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,4 @@ fi

echo "INFO: Sleeping for ${SLEEP}s"
sleep ${SLEEP} # Give time for services to finish starting up before starting tests

if [ "$REPORT_STATUS" = true ]; then
npm run test:ci
else
npm run test
fi

exit_code=$?;
if [ $exit_code != 0 ] && [ "$REPORT_STATUS" = true ]; then
node report-exit.js;
fi
npm run test
46 changes: 0 additions & 46 deletions ci/report-exit.js

This file was deleted.

2 changes: 1 addition & 1 deletion config/env/local_client-public.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"mode": "client",
"indexingEnabled": true,
"apiURL": "http://localhost:7007",
"adminSeed": "adminSeed"
"adminSeed": "0bb124f28f801ff447883eada0867f4e2a8618e3b179982bae02b41f5348c43d"
},
"ipfs": {
"mode": "none"
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
"format": "./node_modules/.bin/prettier --write 'src/**/*{.ts,.tsx,.js}' && ./node_modules/.bin/prettier --write 'ci/*{.ts,.tsx,.js}'",
"lint": "./node_modules/.bin/eslint --fix ./src --ext .js,.jsx,.ts,.tsx",
"prebuild": "npm run clean",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --config jest.config.json --runInBand --verbose",
"test:ci": "node --experimental-vm-modules ./node_modules/.bin/jest --config jest.config.ci.json --runInBand --verbose --forceExit",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --config jest.config.json --runInBand --verbose --forceExit",
"clean": "rm -rf ./build"
},
"dependencies": {
Expand Down

0 comments on commit 672ed83

Please sign in to comment.