@ygracs/jest-electron-runner
v29.15.1
Published
Jest runner that spawns electron workers instead of node
Downloads
11
Maintainers
Readme
| rev.: | 0.1.0 | |:----------- | ----------:| | date: | 2025-09-02 |
Introduction
A custom test runner for Jest that runs tests inside an electron main or renderer process providing the following benefits:
Main
- all electron instance modules (ipc, app, etc)
Renderer
- full access to a browser environment without the need for jsdom or similar modules
This project is a fork of Klaus Reimer's @kayahr/jest-electron-runner which was no longer maintained by author, was archived on Github and is not working with newer Jest versions.
So it started from that point in a grasp to solve so sadly outcome.
Getting Started
Install jest electron runner with
npm i --save-dev @ygracs/jest-electron-runnerAdd one of these lines to your jest config (in
package.jsonor inside yourjest.config.jsfile), depending on the process you wish to test. If you wish to test them in parallel, see the tips section below.- Main process
{ "runner": "@ygracs/jest-electron-runner/main", "testEnvironment": "node" } - Renderer Process
{ "runner": "@ygracs/jest-electron-runner", "testEnvironment": "@ygracs/jest-electron-runner/environment" }
- Main process
Run jest.
Configuration
jest-electron-runner can be configured through test environment options like this:
{
"runner": "@ygracs/jest-electron-runner",
"testEnvironment": "@ygracs/jest-electron-runner/environment",
"testEnvironmentOptions": {
"electron": {
"options": [
"no-sandbox",
"ignore-certificate-errors",
"force-device-scale-factor=1"
],
"disableHardwareAcceleration": false
}
}
}The test environment options shown in the above example are the default options. You can override these defaults as you like. If you want to remove a value-less electron option then prepend it with an exclamation mark (i.E. !ignore-certificate-errors).
The electron options can be any command-line option supported by Electron. The options can also be specified with the environment variable ELECTRON_OPTIONS.
Example:
ELECTRON_OPTIONS="--disable-webgl --enable-unsafe-webgpu"Debugging
Normally jest-electron-runner runs a headless instance of electron when testing the renderer process. You may show the UI by adding this to your test:
// ES:
(await import("@electron/remote")).getCurrentWindow().show();
// CommonJS:
require("@electron/remote").getCurrentWindow().show();Tips
- The main process runner can be used to test any non-browser related code, which can speed up tests roughly 2x.
- To run the main and renderer process tests in parallel, you can provide a config object to the
projectsarray in the jest configuration:{ "projects": [ { "runner": "@ygracs/jest-electron-runner/main", "testEnvironment": "node" }, { "runner": "@ygracs/jest-electron-runner", "testEnvironment": "@ygracs/jest-electron-runner/environment" } ] }
Licenses
All original licenses for used components (see the table bellow) and/or its parts shipped with this package within its '
LICENSES.d' directory.|module|version|license| |:---|---:|---:| |@kayahr/jest-electron-runner|29.15.0|MIT|
