Skip to content

Commit

Permalink
fix test run on combiner
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmgdr committed Oct 24, 2023
1 parent 9e50116 commit fc47cde
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/phone-number-privacy/Dockerfile-combiner
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ COPY --from=packages celo-phone-number-privacy/packages/${PACKAGE_SELECTOR} pack

# Install dependencies and build.
RUN yarn -v
RUN yarn install --network-timeout 100000 --frozen-lockfile
RUN yarn install --network-timeout 100000 --immutable
RUN yarn build

RUN rm -r .git
Expand Down
1 change: 1 addition & 0 deletions docs/examples/blinding/reactNativeBlindingClient.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-restricted-imports */
import { hexToBuffer } from '@celo/base/lib/address'
import { BlsBlindingClient } from '@celo/identity/lib/odis/bls-blinding-client'
import crypto from 'crypto'
Expand Down
3 changes: 2 additions & 1 deletion packages/phone-number-privacy/combiner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"clean": "tsc -b . --clean",
"build": "tsc -b .",
"lint": "eslint .",
"test": "jest --runInBand --testPathIgnorePatterns test/end-to-end",
"test": "yarn jest --runInBand --testPathIgnorePatterns test/end-to-end",
"test:debughandles": "jest --watch --runInBand --detectOpenHandles --testPathIgnorePatterns test/end-to-end",
"test:debug": "node --inspect ../../../node_modules/.bin/jest --runInBand",
"test:coverage": "yarn test --coverage",
Expand Down Expand Up @@ -60,6 +60,7 @@
"@types/node": "18.15.13",
"@types/supertest": "^2.0.12",
"@types/uuid": "^7.0.3",
"jest": "^29.0.2",
"knex": "^2.1.0"
},
"engines": {
Expand Down
1 change: 1 addition & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -971,6 +971,7 @@ __metadata:
bunyan: 1.8.12
dotenv: ^8.2.0
express: ^4.17.1
jest: ^29.0.2
knex: ^2.1.0
lru-cache: ^10.0.1
node-fetch: ^2.6.9
Expand Down

0 comments on commit fc47cde

Please sign in to comment.