Skip to content

Commit

Permalink
Merge pull request #9 from chuang8511/feat-create_account
Browse files Browse the repository at this point in the history
Feat create account
  • Loading branch information
chuang8511 authored Mar 26, 2024
2 parents c9dc8ad + 787b558 commit 1c124f8
Show file tree
Hide file tree
Showing 17 changed files with 2,477 additions and 83 deletions.
23 changes: 22 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,25 @@ module.exports = {
testMatch: ['<rootDir>/src/**/*.test.ts'],
moduleFileExtensions: ['ts', 'js', 'json', 'node'],
};



module.exports = {
// Backend configuration
projects: [
{
displayName: 'backend',
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['<rootDir>/src/**/*.test.ts'],
moduleFileExtensions: ['ts', 'js', 'json', 'node'],
},
// Frontend configuration
{
displayName: 'frontend',
preset: 'ts-jest',
testEnvironment: 'jest-environment-jsdom',
testMatch: ['<rootDir>/src/client/tests/**/**/*.test.tsx'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
},
],
};
Loading

0 comments on commit 1c124f8

Please sign in to comment.