mock expo file system.
This commit is contained in:
parent
b3c2e09987
commit
6673663883
@ -1,10 +0,0 @@
|
|||||||
// __mocks__/expo-file-system.js
|
|
||||||
export const File = {
|
|
||||||
// Define the properties and methods you need for your tests
|
|
||||||
uri: 'file:///path/to/file',
|
|
||||||
};
|
|
||||||
|
|
||||||
export const Paths = {
|
|
||||||
// Define the paths you need for your tests
|
|
||||||
DOCUMENTS_DIRECTORY: '/path/to/documents',
|
|
||||||
};
|
|
4
__mocks__/expo-file-system/next.js
Normal file
4
__mocks__/expo-file-system/next.js
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
export const File = jest.fn();
|
||||||
|
export const Paths = {
|
||||||
|
join: jest.fn(),
|
||||||
|
};
|
@ -1,10 +1,17 @@
|
|||||||
|
import {dirname, resolve} from 'path'
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { fireEvent, render, screen } from '@testing-library/react-native';
|
import { fireEvent, render, screen } from '@testing-library/react-native';
|
||||||
import { NavigationContainer } from '@react-navigation/native';
|
import { NavigationContainer } from '@react-navigation/native';
|
||||||
import { createStackNavigator } from '@react-navigation/stack';
|
import { createStackNavigator } from '@react-navigation/stack';
|
||||||
import TTNavStack from '../TTNavStack';
|
import TTNavStack from '../TTNavStack';
|
||||||
|
|
||||||
jest.mock('expo-file-system', () => require('./__mocks__/expo-file-system'));
|
// Mock the expo-file-system/next module
|
||||||
|
jest.mock('expo-file-system/next', () => ({
|
||||||
|
File: jest.fn(),
|
||||||
|
Paths: {
|
||||||
|
join: jest.fn(),
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
|
||||||
const Stack = createStackNavigator();
|
const Stack = createStackNavigator();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user