Skip to content

whitedogio/jest-editor-support

 
 

Repository files navigation

jest-editor-support

Build Status Coverage Status

The engine that allows editors to build on top of Jest.

Usage

This is only useful if you are interested in building an editor integration for Jest.

API

parse(   
  filePath: string,   
  serializedData?: string,   
  strictMode: boolean = false,     
)

Parse is a static Jest parser which uses Babel 7 and supports js,jsx,mjs,ts,tsx files.

Supported ECMAScript proposals

  • filePath = Path to the file you want to parse.
  • serializedData = Serialized data, will be used instead of the filePath if available (optional).
  • strictMode = If this option is activated the parser throws an exception if the filetype is not detected, defaults to false.

Note

Since version 18.2.0 TypeScript is now a peer dependency. If you don't need to handle .tsx files then you can safely ignore the warning during installation.

About

A module for handling editor to jest integration

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 95.5%
  • TypeScript 4.5%