Skip to content

Commit

Permalink
feat: allow user to create and update accounts with funds from treasu…
Browse files Browse the repository at this point in the history
…ry (#759)

Signed-off-by: Jeromy Cannon <jeromy@swirldslabs.com>
  • Loading branch information
jeromy-cannon committed Feb 16, 2024
1 parent e6b5602 commit cd2567b
Show file tree
Hide file tree
Showing 15 changed files with 831 additions and 36 deletions.
17 changes: 14 additions & 3 deletions solo/jest.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,20 @@
*
*/
const config = {
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(mjs?)$',
moduleFileExtensions: ['js', 'mjs'],
verbose: true
verbose: true,
testSequencer: './test/e2e/jestCustomSequencer.cjs',
projects: [
{
rootDir: '<rootDir>/test/e2e',
displayName: 'end-to-end',
testMatch: ['<rootDir>/**/*.test.mjs']
},
{
rootDir: '<rootDir>/test/unit',
displayName: 'unit',
testMatch: ['<rootDir>/**/*.test.mjs']
}
]
}

export default config
1 change: 1 addition & 0 deletions solo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions solo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jest/test-sequencer": "^29.7.0",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-headers": "^1.1.0",
Expand Down
Loading

0 comments on commit cd2567b

Please sign in to comment.