New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@wordpress/jest-preset-default

Package Overview
Dependencies
Maintainers
5
Versions
163
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wordpress/jest-preset-default

Default Jest preset for WordPress development

  • 1.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
55K
decreased by-8.05%
Maintainers
5
Weekly downloads
 
Created
Source

@wordpress/jest-preset-default

Default Jest preset for WordPress development.

Installation

Install the module

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

Setup

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

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

Usage

Brief explanations of options included
  • coverageDirectory - the directory where Jest outputs its coverage files is set to coverage.
  • coveragePathIgnorePatterns - coverage information will be skipped for all folders named build and build-module.
  • 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.
  • setupTestFrameworkScriptFile - runs code which adds improved support for Console object and React components to the testing framework before each test.
  • testMatch- includes /test/ subfolder in the glob patterns Jest uses to detect test files. It detects only test files containing .js extension.
  • timers - use of fake timers for functions such as setTimeout is enabled.
  • transform - adds support for PEG.js transformed necessary for WordPress blocks. It also keeps the default babel-jest transformer.
  • verbose - each individual test won't be reported during the run.
Overriding setupTestFrameworkScriptFile

It is also possible to override the script that runs some code to configure or set up the testing framework before each test. To do so you will need to create setup-test-framework.js inside your project with the following content:

// You can still load the default script provided by this setup
import '@wordpress/jest-preset-default';

// Your code goes here



Code is Poetry.

Keywords

FAQs

Package last updated on 21 Feb 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc