diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-04-17 04:12:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 17:12:04 +0900 |
commit | ca447d3007b091c4b45d8509f9a9064942a93f2d (patch) | |
tree | 374fb6c1554b4068050fd1d7f6c10368a705bd0e /jest.config.js | |
parent | 9f8d34620b6fa502da683f3775805bf2a5474f92 (diff) |
Update Jest testing to include Typescript (#24555)
Diffstat (limited to 'jest.config.js')
-rw-r--r-- | jest.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jest.config.js b/jest.config.js index 69222ea35..f447cf285 100644 --- a/jest.config.js +++ b/jest.config.js @@ -12,7 +12,7 @@ const config = { setupFiles: ['raf/polyfill'], setupFilesAfterEnv: ['<rootDir>/app/javascript/mastodon/test_setup.js'], collectCoverageFrom: [ - 'app/javascript/mastodon/**/*.js', + 'app/javascript/mastodon/**/*.{js,jsx,ts,tsx}', '!app/javascript/mastodon/features/emoji/emoji_compressed.js', '!app/javascript/mastodon/locales/locale-data/*.js', '!app/javascript/mastodon/service_worker/entry.js', |