Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error with babel-jest: importSource cannot be set when runtime is classic #11394

Closed
atvoid opened this issue May 10, 2021 · 5 comments
Closed

Comments

@atvoid
Copy link

atvoid commented May 10, 2021

馃悰 Bug Report

I'm using Jest with typescript 4.x and React 17 (Create React App 4).
The babel-jest transformer always throws error importSource cannot be set when runtime is classic
Because I'm using emotion css in my jsx, so I have to append the @jsxImportSource in the .tsx file, like:

/** @jsxImportSource @emotion/core */

I've tried overwrite the babel config like

  presets: [
    [
      require.resolve("babel-preset-react-app"),
      {
        runtime: "automatic",
      },
    ],
    [
      require.resolve("@babel/preset-react"),
      {
        runtime: "automatic",
        importSource: "@emotion/core",
      },
    ],
  ],
  plugins: [
    [
      require.resolve("@babel/plugin-transform-react-jsx"),
      {
        runtime: "automatic",
      },
    ],
  ],

it still doesn't work.

To Reproduce

  1. Set up a project by using Create React App 4, typescript and @emotion/core
  2. append /** @jsxImportSource @emotion/core */ in the App.tsx file
    Then run npm run test

Expected behavior

successfully compile the typescript file and run tests

Link to repl or repo (highly encouraged)

N/A

envinfo

  presets: [
    [
      require.resolve("babel-preset-react-app"),
      {
        runtime: "automatic",
      },
    ],
    [
      require.resolve("@babel/preset-react"),
      {
        runtime: "automatic",
        importSource: "@emotion/core",
      },
    ],
  ],
  plugins: [
    [
      require.resolve("@babel/plugin-transform-react-jsx"),
      {
        runtime: "automatic",
      },
    ],
  ],
@atvoid
Copy link
Author

atvoid commented May 17, 2021

No update for this topic ?

@nurit-levi-hs
Copy link

Any update for this one?

@github-actions
Copy link

This issue is stale because it has been open for 1 year with no activity. Remove stale label or comment or this will be closed in 30 days.

@github-actions github-actions bot added the Stale label Aug 24, 2023
@github-actions
Copy link

This issue was closed because it has been stalled for 30 days with no activity. Please open a new issue if the issue is still relevant, linking to this one.

@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Sep 23, 2023
@github-actions
Copy link

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Please note this issue tracker is not a help forum. We recommend using StackOverflow or our discord channel for questions.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 24, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants