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.
Project dotenv Structure
- .env in my root folder
- 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();
});
});