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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ReactElement not assignable #1266

Open
AhmedHadjTaieb opened this issue Jan 29, 2024 · 3 comments
Open

ReactElement not assignable #1266

AhmedHadjTaieb opened this issue Jan 29, 2024 · 3 comments

Comments

@AhmedHadjTaieb
Copy link

Hello,

I am using Next.js, and I have a problem when trying to test a component with react.createNode or react.createElement. The test cannot understand my component and displays errors. However, on all other components that do not use these features, the tests work fine. My environment:

"next": "14.0.1",
"typescript": "5.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"@testing-library/jest-dom": "5.16.5"
"@testing-library/react": "14.1.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"jest-environment-jsdom": "29.3.1",
"ts-jest": "29.1.0",

What I did:

Capture d’écran 2024-01-29 à 09 58 46 (2)

Capture d’écran 2024-01-29 à 09 57 30

Problem description:

Argument of type 'boolean' is not assignable to parameter of type 'ReactElement<any, string | JSXElementConstructor>'.ts(2345)
Parsing error: '>' expected.eslint
'ListPageActionBar' refers to a value, but is being used as a type here. Did you mean 'typeof ListPageActionBar'?

@eps1lon
Copy link
Member

eps1lon commented Jan 29, 2024

Looks like you're using a .ts file not a .tsx file. Can you provide a cloneable repro or, ideally, a TypeScript playground?

@AhmedHadjTaieb
Copy link
Author

It's a .tsx file, not .ts.
As for the report, it may not be possible; perhaps we need to create another project with the same configuration, but that will take some time.

@eps1lon
Copy link
Member

eps1lon commented Jan 30, 2024

It's likely an editor misconfiguration. It parses the file as ts not tsx hence the "Parsing error: '>' expected".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants