6.5.0 • Published 12 months ago

@k8slens/jest v6.5.0

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

@k8slens/jest

This package contains jest configurations and scripts for Lens packages.

Install

$ npm install @k8slens/jest

Features

Package configurations

Shared configurations for minimal duplication.

Node

./packages//jest.config.js

module.exports = require("@k8slens/jest").monorepoPackageConfig(__dirname).configForNode;

React

./packages//jest.config.js

module.exports = require("@k8slens/jest").monorepoPackageConfig(__dirname).configForReact;

Root configuration

You may want to enable testing of packages using single command from root level. This allows you to utilize jest --watch between all packages.

./jest.config.js

module.exports = require("@k8slens/jest").monorepoRootConfig(__dirname);

Scripts

lens-test

Test package with coverage enforcement. Automatically opens coverage report in case of failure.

./packages//package.json

{
 "scripts": {
   "test": "lens-test"
 }         
}