Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dcc-js
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
D-PTB
DCC
Development
dcc-js
Merge requests
!5
Add tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Add tests
feat-jest-tests
into
master
Overview
1
Commits
50
Pipelines
42
Changes
3
Merged
Add tests
Jan Loewe
requested to merge
feat-jest-tests
into
master
Feb 15, 2023
Overview
1
Commits
50
Pipelines
42
Changes
3
0
0
Merge request reports
Viewing commit
7ad5528f
Prev
Next
Show latest version
3 files
+
4
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Verified
7ad5528f
chore(pkg): update deps
· 7ad5528f
Jan Loewe
authored
Apr 20, 2023
jest.config.ts
0 → 100644
+
10
−
0
View file @ 2c33b2e7
Edit in single-file editor
Open in Web IDE
import
type
{
JestConfigWithTsJest
}
from
"
ts-jest
"
;
const
config
:
JestConfigWithTsJest
=
{
preset
:
"
ts-jest
"
,
testEnvironment
:
"
node
"
,
reporters
:
[
"
default
"
,
"
jest-junit
"
],
coverageProvider
:
"
v8
"
,
};
export
default
config
;
Loading