Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
The Nx Plugin for Jest contains executors and generators allowing your workspace to use the powerful Jest testing capabilities.
@nx/jest is a package that integrates Jest testing framework with Nx, a set of extensible dev tools for monorepos. It allows you to run and manage Jest tests efficiently within an Nx workspace.
Running Jest Tests
This configuration allows you to run Jest tests for multiple projects within an Nx workspace. The 'projects' array specifies the paths to the projects you want to include.
module.exports = {
projects: ['<rootDir>/apps/my-app', '<rootDir>/libs/my-lib'],
};
Custom Jest Configuration
This sample shows how to create a custom Jest configuration for a specific project within an Nx workspace. It includes settings for transforming files, module file extensions, and coverage directory.
module.exports = {
displayName: 'my-app',
preset: '../../jest.preset.js',
transform: {
'^.+\\.[tj]sx?$': 'babel-jest',
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/apps/my-app',
};
Running Tests with Nx CLI
You can run tests for a specific project using the Nx CLI. This command runs the tests for the 'my-app' project.
nx test my-app
Jest is a delightful JavaScript testing framework with a focus on simplicity. It works out of the box for most JavaScript projects. While @nx/jest integrates Jest with Nx, Jest itself is a standalone testing framework.
Karma is a test runner developed by the AngularJS team. It allows you to run tests in multiple real browsers. Unlike @nx/jest, which is focused on Jest integration, Karma is more about running tests in different environments.
Mocha is a feature-rich JavaScript test framework running on Node.js and in the browser. It makes asynchronous testing simple. Mocha is more flexible and less opinionated compared to Jest, which is more integrated and comes with more built-in features.
Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.
This package is a Jest plugin for Nx.
Using npx
npx create-nx-workspace
Using npm init
npm init nx-workspace
Using yarn create
yarn create nx-workspace
Run:
npx nx@latest init
FAQs
The Nx Plugin for Jest contains executors and generators allowing your workspace to use the powerful Jest testing capabilities.
The npm package @nx/jest receives a total of 1,217,034 weekly downloads. As such, @nx/jest popularity was classified as popular.
We found that @nx/jest demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.