mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-22 22:25:21 +01:00
* feat: chat wip * chore: more chat stuff * chore: fallback alias * chore: more chat progress * chore: chat continues * chore: disconnect on account change * chore: add start chat view * fix: no messages fix * chore: 🔧 more chat changes * feat: ✨ move to react feather * chore: 🔧 add fee paid * style: 🎨 change fee paid style * fix: 🐛 wrong sidesettings icon * chore: 🔧 add signed verified messages * style: 🎨 chat mobile styling * style: 🎨 contacts button icon * chore: 🔧 add message types * style: 🎨 chat changes * chore: 🔧 error handling and styling * chore: 🔧 chat settings * chore: 🔧 contact last message * chore: 🔧 small alias styling * chore: 🔧 improve error handling * chore: 🔧 juggernaut compatible * chore: 🔧 multi currency * chore: 🔧 add maxfee setting * chore: 🔧 small fixes * chore: 🔧 docker multistage
19 lines
521 B
JavaScript
19 lines
521 B
JavaScript
module.exports = {
|
|
collectCoverageFrom: [
|
|
'**/*.{js,jsx,ts,tsx}',
|
|
'!**/*.d.ts',
|
|
'!**/node_modules/**',
|
|
],
|
|
setupFilesAfterEnv: ['<rootDir>/setupTests.js'],
|
|
testPathIgnorePatterns: ['<rootDir>/.next/', '<rootDir>/node_modules/'],
|
|
transform: {
|
|
'^.+\\.(js|jsx|ts|tsx)$': '<rootDir>/node_modules/babel-jest',
|
|
},
|
|
transformIgnorePatterns: [
|
|
'/node_modules/',
|
|
'^.+\\.module\\.(css|sass|scss)$',
|
|
],
|
|
moduleNameMapper: {
|
|
'^.+\\.module\\.(css|sass|scss)$': 'identity-obj-proxy',
|
|
},
|
|
};
|