summaryrefslogtreecommitdiffstats
path: root/jest.config.js
diff options
context:
space:
mode:
authorMaksim Sukharev <antreesy.web@gmail.com>2024-02-29 17:55:46 +0100
committerMaksim Sukharev <antreesy.web@gmail.com>2024-02-29 19:51:55 +0100
commitbb12e7adadac105c9946ae8056c2cb569e8c8b25 (patch)
treec4345e65d1442166d96d44d82b65d50214ca8289 /jest.config.js
parenta91b44b0c4fac45ed6c419de717233a25c40a3e7 (diff)
fix(mentions): parse groups and federated user mentions, add test coverage
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
Diffstat (limited to 'jest.config.js')
-rw-r--r--jest.config.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/jest.config.js b/jest.config.js
index db9713b49..587e4a84b 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -69,13 +69,14 @@ module.exports = {
globalSetup: resolve(__dirname, 'jest.global.setup.js'),
collectCoverageFrom: [
- '<rootDir>/src/**/*.{js,vue}',
+ '<rootDir>/src/**/*.{js,ts,vue}',
],
testEnvironment: 'jest-environment-jsdom',
moduleFileExtensions: [
'js',
+ 'ts',
'vue',
],