Socket
Socket
Sign inDemoInstall

@aarondewes/wp-jest-preset-default

Package Overview
Dependencies
434
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @aarondewes/wp-jest-preset-default

Default Jest preset for WordPress development.


Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Jest Preset Default

Default Jest preset for WordPress development.

Installation

Install the module

npm install @wordpress/jest-preset-default --save-dev

Note: This package requires Node.js 12.0.0 or later. It is not compatible with older versions.

Setup

Via jest.config.json or jest field in package.json

{
	"preset": "@wordpress/jest-preset-default"
}

Usage

Brief explanations of options included
  • moduleNameMapper - all css and scss files containing CSS styles will be stubbed out.
  • modulePaths - the root dir of the project is used as a location to search when resolving modules.
  • setupFiles - runs code before each test which sets up global variables required in the testing environment.
  • setupFilesAfterEnv - runs code which adds improved support for Console object and React components to the testing framework before each test.
  • snapshotSerializers - makes it possible to use snapshot tests on Enzyme wrappers.
  • testMatch- includes /test/ subfolder in addition to the glob patterns Jest uses to detect test files. It detects only test files containing .js (or .ts) suffix. It doesn't match files with .spec.js suffix.
  • timers - use of fake timers for functions such as setTimeout is enabled.
  • transform - keeps the default babel-jest transformer.
  • verbose - each individual test won't be reported during the run.



Code is Poetry.

Keywords

FAQs

Last updated on 03 Jun 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc