translation-terrace/__mocks__/expo-file-system.js
2025-02-18 16:56:19 -08:00

10 lines
269 B
JavaScript

// __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',
};