Skip to content

Commit 917db09

Browse files
author
mike dupont
committed
update version of clinic in jest
1 parent 1dde76f commit 917db09

5 files changed

+102
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,4 @@ flycheck_*.el
6161
/network-security.data
6262

6363
/.clinic/
64+
/_clinic/

README-dev.md

+1
Original file line numberDiff line numberDiff line change
@@ -388,3 +388,4 @@ Using docker hub create a repo to hold the data.
388388
##
389389
`docker run -v /mnt/data1/:/mnt/data1 -it h4ckermike/o1js-clinicjs-data:sept-17-2024 bash`
390390
`cp -r .clinic /mnt/data1/nix/time/2024/09/17/o1js/_clinic`
391+
`sudo chown -R mdupont: _clinic `

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"prettier": "^2.8.4",
9494
"replace-in-file": "^6.3.5",
9595
"rimraf": "^3.0.2",
96-
"ts-jest":"https://github.com/meta-introspector/ts-jest.git",
96+
"ts-jest": "https://github.com/meta-introspector/ts-jest.git",
9797
"typedoc": "^0.25.13",
9898
"typedoc-plugin-markdown": "^4.0.0-next.53",
9999
"typedoc-plugin-merge-modules": "^5.1.0",
@@ -102,9 +102,11 @@
102102
"dependencies": {
103103
"blakejs": "1.2.1",
104104
"cachedir": "^2.4.0",
105+
"import-local": "^3.2.0",
105106
"isomorphic-fetch": "^3.0.0",
106107
"jest-cli": "https://github.com/meta-introspector/jest.git",
107108
"js-sha256": "^0.9.0",
109+
"mkdirp": "^3.0.1",
108110
"npm": "10.8.3",
109111
"reflect-metadata": "^0.1.13",
110112
"tslib": "^2.3.0"

pnpm-lock.yaml

+84
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

run-all-tests.sh

+13-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,19 @@ set +e
77

88
#######
99
find /app > /tmp/app-files-list.txt
10-
NO_INSIGHT=true clinic doctor --collect-only -- node /usr/local/bin/pnpm run test
10+
#NO_INSIGHT=true clinic doctor --collect-only --
11+
node /usr/local/bin/pnpm run test
12+
#./run-jest-tests.sh
13+
export NODE_OPTIONS=--experimental-vm-modules
14+
export NO_INSIGHT=true
15+
clinic doctor --collect-only -- node ./node_modules/jest-cli/bin/jest.js ./src/mina-signer/tests/rosetta.test.ts
16+
clinic doctor --collect-only -- node ./node_modules/.pnpm/@jest+monorepo@https+++codeload.github.com+meta-introspector+jest+tar.gz+4a58402556ecd05ca9cc01873db6fbc5596ccc67/node_modules/@jest/monorepo/packages/jest-cli/bin/jest.js ./src/mina-signer/tests/rosetta.test.ts
17+
18+
# + for f in ./src/**/*.test.ts
19+
#./src/lib/mina/precondition.test.ts
20+
#./src/lib/mina/token.test.ts
21+
#./src/lib/provable/test/primitives.test.ts
22+
1123
NO_INSIGHT=true clinic doctor --collect-only -- node /usr/local/bin/pnpm run test:integration
1224
NO_INSIGHT=true clinic doctor --collect-only -- node /usr/local/bin/pnpm run test:unit
1325
NO_INSIGHT=true clinic doctor --collect-only -- node /usr/local/bin/pnpm run test:e2e

0 commit comments

Comments
 (0)