Test suite failed to run Cannot find module '@env' from ''mylocalfile.js"

523 Views Asked by At

I am using jest unit testing in my project. It was working fine for some time. I have integrated dotenv with my project recently. Now testing is failed for all files. Receiving following error when I do a run test.

enter image description here

Project dotenv Structure

  1. .env in my root folder
  2. env.d.ts in my root folder/src/typings

My actual code

import { Linking, AsyncStorage, Platform, Alert } from "react-native";
import { Toast } from "native-base";
import { ZOOM_APP_PLAYSTORE, ZOOM_APP_APPSTORE, ZOOM_URL } from "@env";
import { General } from "../Constants";

when I do run the app, it is working fine, and issues with only run a test.

Unit testing - jest

Test code

describe("Testpage Component", () => {
    it('renders without crashing', () => {
        const rendered = renderer.create(<Provider store={store}>
            <DrawerComponent />
        </Provider>).toJSON();
        expect(rendered).toBeTruthy();
    });
});
0

There are 0 best solutions below