I am doing react component testing **Context:** - GOOD Playwright Version: 1.41.0 - BAD Playwright Version: 1.41.2 - Operating System: [e.g. Windows, Linux or Mac]: Mac - Extra: [any specific details about your environment] **Code Snippet** ```js // CreateSignature.types.ts export enum ALLOWED_TABS { DRAW = "DRAW", TYPE = "TYPE", IMAGE = "IMAGE", } ``` ```js // x.spec.tsx import { ALLOWED_TABS } from "../CreateSignature.types"; console.log(ALLOWED_TABS); // This gives // { // __pw_type: 'importRef', // id: 'recipes_src_components_CreateSignature_CreateSignature_types_ts_ALLOWED_TABS' // } ``` When we define `ALLOWED_TABS` in other file and import it,