Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolezhniuk committed Mar 28, 2024
1 parent e16698d commit 46655b6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: npm ci

- name: Run Prettier
run: npm run format
run: npm run format:check

- name: Run ESLint
run: npm run lint
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --fix --ext .ts src/** tests/**",
"format": "prettier --config .prettierrc './**/*.ts' --write"
"format": "prettier --config .prettierrc './**/*.ts' --write",
"format:check": "prettier --config .prettierrc './**/*.ts' --check"
},
"release": {
"branches": [
Expand Down
2 changes: 1 addition & 1 deletion tests/did.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ describe('DID tests', () => {
wantDID: 'did:polygonid:zkevm:test:2wcMpvr8NgWTfqN6ChaFEx1qRnLREXhjeoJ45pFyw5'
},
{
title: 'Polygon | zkEVM chain, test',
title: 'Polygon chain, Amoy',
method: DidMethod.PolygonId,
chain: Blockchain.Polygon,
net: NetworkId.Amoy,
Expand Down

0 comments on commit 46655b6

Please sign in to comment.