Loading
Intro to Configure Jest for Testing JavaScript Applications
Transcript
Intro to Configure Jest for Testing JavaScript Applications
Configure Jest for Testing JavaScript Applications
1.
Intro to Configure Jest for Testing JavaScript Applications
2.
Install and Run Jest
3.
Compile Modules with Babel in Jest Tests
4.
Configure Jest’s Test Environment for Testing Node or Browser Code
5.
Support Importing CSS files with Jest’s moduleNameMapper
6.
Support using Webpack CSS Modules with Jest
7.
Generate a Serializable Value with Jest Snapshots
8.
Test an Emotion Styled UI with Custom Jest Snapshot Serializers
9.
Support Custom Module Resolution with Jest moduleDirectories
10.
Configure Jest to Run Setup for All Tests with Jest setupFilesAfterEnv
11.
Support a Test Utilities File with Jest moduleDirectories
12.
Use Jest Watch Mode to Speed Up Development
13.
Step through Code in Jest using the Node.js Debugger and Chrome DevTools
14.
Configure Jest to Report Code Coverage on Project Files
15.
Analyze Jest Code Coverage Reports
16.
Set a Code Coverage Threshold in Jest to Maintain Code Coverage Levels
17.
Report Jest Test Coverage to Codecov through TravisCI
18.
Run Jest Watch Mode by Default Locally with is-ci-cli
19.
Run Tests with a Different Configuration using Jest’s --config Flag and testMatch Option
20.
Support Running Multiple Configurations with Jest’s Projects Feature
21.
Run ESLint with Jest using jest-runner-eslint
22.
Test Specific Projects in Jest Watch Mode with jest-watch-select-projects
23.
Filter which Tests are Run with Typeahead Support in Jest Watch Mode
24.
Run Only Relevant Jest Tests on Git Commit to Avoid Breakages