mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 11:48:06 +01:00
Update Jest testing to include Typescript (#24555)
This commit is contained in:
parent
9f8d34620b
commit
ca447d3007
2 changed files with 5 additions and 1 deletions
4
.github/workflows/test-js.yml
vendored
4
.github/workflows/test-js.yml
vendored
|
@ -9,6 +9,8 @@ on:
|
||||||
- '.nvmrc'
|
- '.nvmrc'
|
||||||
- '**/*.js'
|
- '**/*.js'
|
||||||
- '**/*.jsx'
|
- '**/*.jsx'
|
||||||
|
- '**/*.ts'
|
||||||
|
- '**/*.tsx'
|
||||||
- '**/*.snap'
|
- '**/*.snap'
|
||||||
- '.github/workflows/test-js.yml'
|
- '.github/workflows/test-js.yml'
|
||||||
|
|
||||||
|
@ -19,6 +21,8 @@ on:
|
||||||
- '.nvmrc'
|
- '.nvmrc'
|
||||||
- '**/*.js'
|
- '**/*.js'
|
||||||
- '**/*.jsx'
|
- '**/*.jsx'
|
||||||
|
- '**/*.ts'
|
||||||
|
- '**/*.tsx'
|
||||||
- '**/*.snap'
|
- '**/*.snap'
|
||||||
- '.github/workflows/test-js.yml'
|
- '.github/workflows/test-js.yml'
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ const config = {
|
||||||
setupFiles: ['raf/polyfill'],
|
setupFiles: ['raf/polyfill'],
|
||||||
setupFilesAfterEnv: ['<rootDir>/app/javascript/mastodon/test_setup.js'],
|
setupFilesAfterEnv: ['<rootDir>/app/javascript/mastodon/test_setup.js'],
|
||||||
collectCoverageFrom: [
|
collectCoverageFrom: [
|
||||||
'app/javascript/mastodon/**/*.js',
|
'app/javascript/mastodon/**/*.{js,jsx,ts,tsx}',
|
||||||
'!app/javascript/mastodon/features/emoji/emoji_compressed.js',
|
'!app/javascript/mastodon/features/emoji/emoji_compressed.js',
|
||||||
'!app/javascript/mastodon/locales/locale-data/*.js',
|
'!app/javascript/mastodon/locales/locale-data/*.js',
|
||||||
'!app/javascript/mastodon/service_worker/entry.js',
|
'!app/javascript/mastodon/service_worker/entry.js',
|
||||||
|
|
Loading…
Reference in a new issue