You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a test file contains a default export such as: import something from 'path/to/thing' it is not imported correctly.
The 'something' in this case, will be set within two braces {} as a named import: import {something} from 'path/to/thing'
which should not be the case.
This results in issues when trying to use the import in the merged file.
The text was updated successfully, but these errors were encountered:
When a test file contains a default export such as:
import something from 'path/to/thing'
it is not imported correctly.The 'something' in this case, will be set within two braces {} as a named import:
import {something} from 'path/to/thing'
which should not be the case.
This results in issues when trying to use the import in the merged file.
The text was updated successfully, but these errors were encountered: