Skip to content

Commit 0964b87

Browse files
committed
Merge remote-tracking branch 'origin/master' into next
2 parents f3d3fd7 + acae9f2 commit 0964b87

72 files changed

Lines changed: 7341 additions & 6287 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ coverage:
66
status:
77
project:
88
default:
9-
target: 95%
9+
target: 85%
1010
patch:
1111
default:
12-
target: 95%
12+
target: 90%

.cspell.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,6 @@
280280
"**.pdf",
281281
// Do not spellcheck generated code
282282
"**/dist/**",
283-
"**/dist-test/**",
284283
"**/coverage/**",
285284
"**/build/**",
286285
"**/.docusaurus/**",

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
**/dist/
2-
**/dist-test/
32
**/node_modules/
43
**/grammar/
54
/website/

.eslintrc.cjs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ module.exports = {
1111
sourceType: 'module', // Allows for the use of imports
1212
extraFileExtensions: ['.cjs'],
1313
},
14-
env: {
15-
'jest': true,
16-
},
1714
rules: {
1815
'max-len': ['error', { code: 125, ignoreStrings: true, ignoreTemplateLiterals: true }],
1916
'import/no-cycle': 0, // Needed for AST -> AstVisitor -> AST

.github/workflows/github-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: yarn
3333

3434
- name: Run tests
35-
run: yarn test -- -- --coverage --coverageProvider=v8
35+
run: yarn test -- -- --coverage --coverage.provider=v8
3636

3737
- name: Run linter
3838
run: yarn lint

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
lerna-debug.log
22
npm-debug.log
33
**/dist/
4-
**/dist-test/
54
**/node_modules/
65

76
**/.DS_Store

DEVELOPMENT.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,7 @@ To run specific tests, you can use the `-t` flag to match the name mentioned in
7373
# Run all tests in the 'Transaction Builder' describe block (test/e2e/transaction-builder/TransactionBuilder.test.ts)
7474
yarn test -t 'Transaction Builder'
7575
```
76+
77+
## Code Coverage
78+
79+
New contributions have a code coverage target of 90%+. You can run `yarn test --coverage` to see the coverage report before submitting a PR.

examples/testing-suite/artifacts/example.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@
4343
"name": "cashc",
4444
"version": "0.13.0"
4545
},
46-
"updatedAt": "2025-10-02T09:56:11.510Z"
46+
"updatedAt": "2025-12-09T10:19:09.338Z"
4747
}

examples/testing-suite/jest.config.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

examples/testing-suite/jest.setup.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)