Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitttttten/jest-transformer-mdx
A jest transformer for MDX with frontMatter support
https://github.com/bitttttten/jest-transformer-mdx
frontmatter jest mdx
Last synced: 3 months ago
JSON representation
A jest transformer for MDX with frontMatter support
- Host: GitHub
- URL: https://github.com/bitttttten/jest-transformer-mdx
- Owner: bitttttten
- Created: 2019-06-26T12:57:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-26T21:44:31.000Z (over 3 years ago)
- Last Synced: 2024-11-08T23:49:10.847Z (3 months ago)
- Topics: frontmatter, jest, mdx
- Language: JavaScript
- Homepage:
- Size: 1.2 MB
- Stars: 12
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# jest-transformer-mdx
[![Github release version](https://img.shields.io/github/tag/bitttttten/jest-transformer-mdx.svg)](https://github.com/bitttttten/jest-transformer-mdx/releases)
[![Commits since release](https://img.shields.io/github/commits-since/bitttttten/jest-transformer-mdx/v2.2.0.svg)](https://github.com/bitttttten/jest-transformer-mdx/compare/v2.2.0...master)
[![npm release version](https://img.shields.io/npm/v/jest-transformer-mdx.svg)](https://www.npmjs.com/package/jest-transformer-mdx)## Introduction
Jest transformer for [MDX](https://mdxjs.com/) with [frontMatter](https://github.com/c8r/x0/blob/master/lib/mdx-fm-loader.js) support.
## Instructions
### Install
`yarn add jest-transformer-mdx`
### Add to your jest config
```js
// jest.config.js
module.exports = {
// A map from regular expressions to paths to transformers
transform: {
"^.+\\.(md|mdx)$": "jest-transformer-mdx",
},
}
```And that should be it! `jest-transformer-mdx` will pick up your babel config and use your jest config.
### jest 26 or below
To support jest 26 or below, please install at version 2. Version 3 only supports jest 27 and above.
`yarn add jest-transformer-mdx@2`
### Example
Look inside [this library's test](https://github.com/bitttttten/jest-transformer-mdx/blob/master/test.js) and the related [markdown file](https://github.com/bitttttten/jest-transformer-mdx/blob/master/test.md) to see live a example.
### Configuration
You can configure this transformer by using a different syntax in your jest config, an array of the path to the transformer followed by an options object.
#### Options
#### frontMatterName
```js
// jest.config.js
module.exports = {
transform: {
"^.+\\.(md|mdx)$": [
"jest-transformer-mdx",
{
frontMatterName: "meta",
mdxOptions: {
rehypePlugins: [require("rehype-slug")],
},
},
],
},
}
```Use this option to rename the exported frontMatter object. This module exports the frontMatter object named as "frontMatter", so [in your component and tests](https://github.com/bitttttten/jest-transformer-mdx/blob/d23701d641f826fface8511e70734073ca2ad29b/test.js#L2) you could only access the frontMatter object through `require('./hello-world.mdx').frontMatter`. If this does not suite your workflow, then use this option to rename it.
#### mdxOptions
```js
// jest.config.js
module.exports = {
transform: {
"^.+\\.(md|mdx)$": [
"jest-transformer-mdx/mdx-options",
{
frontMatterName: "meta",
mdxOptions: {
rehypePlugins: [require("rehype-slug")],
},
},
],
},
}
```Note: edit your transform property to import from `jest-transformer-mdx/mdx-options`.
Use this option to configure mdx. Perhaps you have added some custom plugins, and need that reflected in this transformer. Note that you can either pass in an inline object like the above example, or you can pass in a path to a file that exports your mdx options like the below example, which is useful if your mdx options is not JSON-serializable:
```js
// jest.config.js
module.exports = {
transform: {
"^.+\\.(md|mdx)$": [
"jest-transformer-mdx",
{
mdxOptions: "config/mdx-options.js",
},
],
},
}
``````js
// config/mdx-options.js
const options = {
rehypePlugins: [rehypeSlug],
}module.exports = options
```#### Interface
```ts
interface Options {
// rename the object that the frontmatter object will get exported as
frontMatterName?: string
}
```### create-react-app & configless
You can also use this module in `create-react-app`-like apps where the config is not exposed. Edit your transform property to import from `jest-transformer-mdx/cra`. This method does not support any of the configuration options mentioned above yet.
```js
// jest.config.js
module.exports = {
transform: {
"^.+\\.(md|mdx)$": "jest-transformer-mdx/cra",
},
}
```## Credits
Made possible by