1.2.0 • Published 1 month ago

flow-aware-swc-jest v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

flow-aware-swc-jest

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

Installation

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

Configuration

  1. 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
}
  1. 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"),
  };
});
1.2.0

1 month ago

1.1.0

1 month ago

1.0.3

3 months ago

1.0.2

3 months ago

1.0.0

3 months ago