Error on Galio files when run tests with jest
See original GitHub issueDescribe the bug Got an error when galio is imported by tested file. I’m not sure if it’s a problem with Galio or Jest. Jest was configured like expo docs suggests.
/home/felipe/Dev/GoAppDesign/node_modules/galio-framework/src/index.js:4
import Accordion from './Accordion';
^^^^^^^^^
SyntaxError: Unexpected identifier
2 | import { StyleSheet } from 'react-native';
3 | import PropTypes from 'prop-types';
> 4 | import { Button } from 'galio-framework';
| ^
5 |
6 | import { argonTheme } from '../constants';
7 |
at Runtime.createScriptFromCode (node_modules/@jest/core/node_modules/jest-runtime/build/index.js:1059:14)
at Object.<anonymous> (src/argon/Button.js:4:1)
To Reproduce Steps to reproduce the behavior:
- A published a minimal project that reproduces the error
- Clone https://github.com/felipebergamin/reproduce-galio-test-error
- Install deps with
yarn
- Run test with
yarn jest
Expected behavior Success test
Screenshots
Issue Analytics
- State:
- Created 4 years ago
- Comments:8
Top Results From Across the Web
0 - Stack Overflow
I modified my jest configuration to add this: "moduleNameMapper": { + "galio": "identity-obj-proxy" }. And installed the identity-obj-proxy ...
Read more >Troubleshooting - Jest
Troubleshooting. Uh oh, something went wrong? Use this guide to resolve issues with Jest. Tests are Failing and You Don't Know Why.
Read more >Issues · galio-org/galio · GitHub
Error on Galio files when run tests with jest Type: Bug Something isn't working Type: Question Further information is requested.
Read more >galio-community/Lobby - Gitter
@AmityTek I can't really understand your error message. ... @palingheorghe Yes, I am using Expo Snack to test galio framework components.
Read more >git ignore for react native
Jest ignore or exclude file/function/statement from test coverage. If a file hasn't been added to git then you can add file to gitignore...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi, I have:
This fixes OP error. But now I’m getting this one:
Hi @felipebergamin ! Thanks for opening up this issue. I’ll have to take a look at this, right now I’m not sure where exactly is the problem and why is this error showing up.