@macro-plugin/jest
TypeScript icon, indicating that this package has built-in type declarations

1.1.2 • Public • Published

@macro-plugin/jest

Macro Plugin integration for jest. It supports transform macros and typescript and also jsx.

Installation

# if you use npm
npm i -D @macro-plugin/jest
# if you use pnpm
pnpm i -D @macro-plugin/jest
# if you use yarn
yarn add -D @macro-plugin/jest

Usage

jest.config.js:

module.exports = {
  transform: {
    '^.+\\.(t|j)sx?$': '@macro-plugin/jest',
  },
}

It will load the configuration from macros.config.js or macros.config.ts by default. You can also customize it:

const fs = require('fs')
const config = require('./macros.config.js')

module.exports = {
  transform: {
    '^.+\\.(t|j)sx?$': ['@macro-plugin/jest', { ...config, /* custom configuration in Jest */ }],
  },
}

macros.config.ts:

import { defineConfig } from "@macro-plugin/core"

export default defineConfig({
  macros: [],
  emitDts: true,
  jsc: {
    parser: {
      syntax: "typescript"
    },
    target: "esnext",
  },
})

Or with commonjs

macros.config.js

/** @type {import("@macro-plugin/core").Config} */
module.exports = {
  macros: [],
  emitDts: true,
  jsc: {
    parser: {
      syntax: "typescript"
    },
    target: "esnext",
  },
}

License

MIT

Package Sidebar

Install

npm i @macro-plugin/jest

Weekly Downloads

5

Version

1.1.2

License

MIT

Unpacked Size

14.7 kB

Total Files

5

Last publish

Collaborators

  • voorjaar