Combined Code Coverage
Code coverage is not a be all, end all metric. However, we can empirically prove that practicing TDD at all levels can at the end yield a high amount of code coverage. We can also analyze where we may be missing coverage, or have redundant source code looking at analytics.
We will acquire coverage from Cypress CT, Cypress E2e, as well as any Jest and / or RTL tests. We will then combine the coverage into a single report.
This appendix is based on the blog post Triple combined code coverage for React Apps with Jest, Cypress component and e2e tests, using Github Actions. We will be adapting it to TypeScript.
With TS the packages are slightly different with
@babel/preset-typescript
:yarn add -D @babel/plugin-transform-modules-commonjs @babel/preset-env @babel/preset-react @babel/preset-typescript @bahmutov/cypress-code-coverage @cypress/instrument-cra babel-loader istanbul istanbul-lib-coverage nyc
This script is the same as the JS version
"start": "react-scripts -r @cypress/instrument-cra start"
This is similar to the JS version, with TS and TSX included.
"excludeAfterRemap": true,
"report-dir": "coverage-cy",
"reporter": ["text", "json", "html"],
"extension": [".ts", ".tsx", "js", "jsx"],
"include": ["src/**/*.tsx", "src/**/*.ts", "src/**/*.jsx", "src/**/*.js"],
"exclude": [
"any files you want excluded"
]
There are 3 key differences on the TS version of the configuration. In the beginning of the file we have to import
@cypress/instrument-cra
. We need to include @babel/preset-typescript
in the module presets, and the test property has to be TS instead of JS.import "@cypress/instrument-cra";
import { defineConfig } from "cypress";
const codeCoverageTask = require("@bahmutov/cypress-code-coverage/plugin");
module.exports = defineConfig({
projectId: "7mypio",
experimentalSingleTabRunMode: true,
retries: {
runMode: 2,
openMode: 0,
},
env: {
API_URL: "http://localhost:4000/api",
},
e2e: {
specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}",
baseUrl: "http://localhost:3000",
setupNodeEvents(on, config) {
return Object.assign({}, config, codeCoverageTask(on, config));
},
},
component: {
setupNodeEvents(on, config) {
return Object.assign({}, config, codeCoverageTask(on, config));
},
specPattern: "src/**/*.cy.{js,jsx,ts,tsx}",
devServer: {
framework: "create-react-app",
bundler: "webpack",
// here are the additional settings from Gleb's instructions
webpackConfig: {
// workaround to react-scripts 5 issue https://github.com/cypress-io/cypress/issues/22762
devServer: {
port: 3001,
},
mode: "development",
devtool: false,
module: {
rules: [
// application and Cypress files are bundled like React components
// and instrumented using the babel-plugin-istanbul
{
test: /\.ts$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript",
],
plugins: [
"istanbul",
[
"@babel/plugin-transform-modules-commonjs",
{ loose: true },
],
],
},
},
},
],
},
},
},
},
});
/* eslint-disable @typescript-eslint/no-unused-vars */
This is our preferred component test config because@babel/plugin-transform-modules-commonjs
lets us customize webpack config, so that we can make all imports accessible from any file including specs. This allows to spy/stub a wider range of code in the component tests.
Indifferent to a JS app.
import "@bahmutov/cypress-code-coverage/support";
Same convenience scripts as in the JS version
"cov:combined": "yarn copy:reports && yarn combine:reports && yarn finalize:combined-report",
"copy:reports": "(mkdir reports || true) && cp coverage-cy/coverage-final.json reports/from-cypress.json && cp coverage/coverage-final.json reports/from-jest.json",
"combine:reports": "(mkdir .nyc_output || true) && yarn nyc merge reports && mv coverage.json .nyc_output/out.json",
"finalize:combined-report": "yarn nyc report --reporter html --reporter text --reporter json-summary --report-dir combined-coverage",
"cov:reset": "rm -rf .nyc_output && rm -rf reports && rm -rf coverage && rm -rf coverage-cy && rm -rf combined-coverage",
We can replicate the same steps from the JS variant of the guide.
We need to tell Jest not to include coverage from
cy.ts*
files. This can be done in the package.json
script."test:coverage": "yarn test --watchAll=false --collectCoverageFrom=src/**/*.ts* --collectCoverageFrom=!src/**/*.*.ts* --coverage",
In
Heroes.tsx
and Villiains.tsx
we have a sectionif (status === "loading") {
return <PageSpinner />;
}
Code coverage points out that this line is not covered, although we have tests in
Hero.cy.tsx
etc. explicitly checking for the spinner. This is leftover code from prior to implementing ErrorBoundary. We can safely remove it.TDD has ensured that we build and explore the application through tests, covering everything that matters. Code coverage has not been a thought while practicing TDD, but TDD helped us gain 100% combined code coverage at the end. Here is the CodeCov report:

3-cov

combined-100
Check out Optimizing and simplifying Cypress config for scale. Based on the optimizations, the final app can refactored to make the config file even simpler.
We create one file for plugins,
cypress/support/plugins.ts
,and have all plugins in there.// cypress/support/plugins.ts
const cyCodeCov = require("@bahmutov/cypress-code-coverage/plugin");
/**
* The collection of plugins to use with Cypress
* @param on `on` is used to hook into various events Cypress emits
* @param config `config` is the resolved Cypress config
*/
export default function plugins(
on: Cypress.PluginEvents,
config: Cypress.PluginConfigOptions
) {
return {
// add plugins here
// ...cyDataSession(on, config), // example
...cyCodeCov(on, config),
};
}
Similarly, and as an extra, we can create one file for tasks,
cypress/support/tasks.ts
, and have all tasks in there.// cypress/support/tasks.ts
import log from "./log";
/**
* The collection of tasks to use with `cy.task()`
* @param on `on` is used to hook into various events Cypress emits
*/
export default function tasks(on: Cypress.PluginEvents) {
on("task", { log });
// add tasks here
}
Let's have a simple task, some Node code, to log out to the CLI when running
cy.task('log', 'hello')
. This logs out to the CLI as opposed to browser console.// cypress/support/log.ts
// an example task that logs to the CLI console
// cy.task('log', 'e2e sanity passed')
const log = (x: string) => {
console.log(x);
return null;
};
export default log;
We can now convert the config file to TS, import plugins and tasks from the files. This way, in the future, if we have new plugins or tasks, the config file does not have to change. Also helps us if we have multiple config files for deployments (dev, stage, prod, etc.), none of them have to change in case the plugins change.
import "@cypress/instrument-cra";
import { defineConfig } from "cypress";
import plugins from "./cypress/support/plugins";
import tasks from "./cypress/support/tasks";
export default defineConfig({
projectId: "7mypio",
// @ts-expect-error - experimentalSingleTabRunMode is not in the type definition
experimentalSingleTabRunMode: true,
retries: {
runMode: 2,
openMode: 0,
},
env: {
API_URL: "http://localhost:4000/api",
},
e2e: {
specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}",
baseUrl: "http://localhost:3000",
setupNodeEvents(on, config) {
tasks(on);
return plugins(on, config);
},
},
component: {
setupNodeEvents(on, config) {
tasks(on);
return plugins(on, config);
},
specPattern: "src/**/*.cy.{js,jsx,ts,tsx}",
devServer: {
framework: "create-react-app",
bundler: "webpack",
// here are the additional settings from Gleb's instructions
webpackConfig: {
// workaround to react-scripts 5 issue https://github.com/cypress-io/cypress/issues/22762
devServer: {
port: 3001,
},
mode: "development",
devtool: false,
module: {
rules: [
// application and Cypress files are bundled like React components
// and instrumented using the babel-plugin-istanbul
{
test: /\.ts$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript",
],
plugins: [
"istanbul",
[
"@babel/plugin-transform-modules-commonjs",
{ loose: true },
],
],
},
},
},
],
},
},
},
},
});
Assume that instead of Webpack, we want to use Vite. We replicated the original Webpack version of the Tour of Heroes repo in Vite over at tour-of-heroes-react-vite-cypress-ts. We want to have Cypress e2e and component test coverage with Vite.
For Vite code coverage with Vite, we need a lot less packages:
yarn add -D istanbul istanbul-lib-coverage nyc vite-plugin-istanbul
We need to modify our
vite.config.ts
slightly.import {defineConfig} from 'vite'
import path from 'path'
import react from '@vitejs/plugin-react'
import istanbul from 'vite-plugin-istanbul'
export default defineConfig({
// need to add sourcemaps
build: {
sourcemap: true,
},
// plugins: [react()], // modify the plugins as below
plugins: [
react(),
istanbul({
cypress: true,
requireEnv: false,
}),
],
// no changes
resolve: {
//
},
})
This is exactly the same as the Webpack version of things, we will not repeat the text here.
No additional settings here; we do not need
@cypress/instrument-cra
.This is exactly the same as the Webpack version of things, we will not repeat the text here.
Again, no distinctions here vs the Webpack version of things.
Last modified 22d ago