📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

flow-aware-swc-jest

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flow-aware-swc-jest

Use @swc/jest even if you have flow

1.2.0
latest
Source
npm
Version published
Weekly downloads
77
24.19%
Maintainers
1
Weekly downloads
 
Created
Source

flow-aware-swc-jest

Use @swc/jest even if you are using flow.

babel-jest (61s)flow-aware-swc-jest (23s)
Screenshot 2024-02-09 at 1 30 58 AM Screenshot 2024-02-09 at 1 27 52 AM

Installation

npm i --save-dev flow-aware-swc-jest

Configuration

  • You need to configure .swcrc like below.
{
  "jsc": {
    "parser": {
      "syntax": "typescript",
      "jsx": true,
      "tsx": true,
      "dynamicImport": false,
      "privateMethod": false,
      "functionBind": false,
      "exportDefaultFrom": false,
      "exportNamespaceFrom": false,
      "decorators": false,
      "decoratorsBeforeExport": false,
      "topLevelAwait": false,
      "importMeta": false,
      "preserveAllComments": false
    },
    "transform": null,
    "target": "es5",
    "loose": true,
    "externalHelpers": false,
    "keepClassNames": false
  },
  "isModule": true
}
  • Configure jest config trasform
transform: {
  '^.+\\.(t|j)sx?$': 'flow-aware-swc-jest',
},

I have error when jest.spyOn

TypeError: Cannot redefine property or TypeError: Cannot read properties of undefined

You need to do mock as a esModule

jest.mock("./path_to_spy", () => {
  return {
    __esModule: true, // <- Important!
    ...jest.requireActual("./path_to_spy"),
  };
});

Keywords

swc

FAQs

Package last updated on 26 Mar 2024

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