5

我用最新版本创建了一个新的 react-native 应用程序,默认测试效果很好。然后我使用'react-native-fs' lib 在我的应用程序中编写一个文件,它工作正常。但是我尝试运行测试命令,它失败了。

> TestJest@0.0.1 test D:\test\TestJest
> jest

 FAIL  __tests__\index.android.js
  ● Test suite failed to run

TypeError: Cannot read property 'RNFSFileTypeRegular' of undefined

  at Object.<anonymous> (node_modules\react-native-fs\FS.common.js:17:36)
  at Object.<anonymous> (index.android.js:14:20)

Test Suites: 1 failed, 1 total
Tests:       0 total
Snapshots:   0 total
Time:        0.8s
Ran all test suites.
npm ERR! Test failed.  See above for more details.

我遵循了 Jest 的手册文档,但我还没有解决错误。这是我的示例回购。你能看看我的示例回购,让我知道我错了吗?

谢谢你。

4

1 回答 1

5

对于那些寻求快速解决此问题的人:

react-native-fs.js在您的文件夹中创建一个名为的__mocks__文件,并将其添加为其内容:

jest.mock('react-native-fs', () => {
  return {
    mkdir: jest.fn(),
    moveFile: jest.fn(),
    copyFile: jest.fn(),
    pathForBundle: jest.fn(),
    pathForGroup: jest.fn(),
    getFSInfo: jest.fn(),
    getAllExternalFilesDirs: jest.fn(),
    unlink: jest.fn(),
    exists: jest.fn(),
    stopDownload: jest.fn(),
    resumeDownload: jest.fn(),
    isResumable: jest.fn(),
    stopUpload: jest.fn(),
    completeHandlerIOS: jest.fn(),
    readDir: jest.fn(),
    readDirAssets: jest.fn(),
    existsAssets: jest.fn(),
    readdir: jest.fn(),
    setReadable: jest.fn(),
    stat: jest.fn(),
    readFile: jest.fn(),
    read: jest.fn(),
    readFileAssets: jest.fn(),
    hash: jest.fn(),
    copyFileAssets: jest.fn(),
    copyFileAssetsIOS: jest.fn(),
    copyAssetsVideoIOS: jest.fn(),
    writeFile: jest.fn(),
    appendFile: jest.fn(),
    write: jest.fn(),
    downloadFile: jest.fn(),
    uploadFiles: jest.fn(),
    touch: jest.fn(),
    MainBundlePath: jest.fn(),
    CachesDirectoryPath: jest.fn(),
    DocumentDirectoryPath: jest.fn(),
    ExternalDirectoryPath: jest.fn(),
    ExternalStorageDirectoryPath: jest.fn(),
    TemporaryDirectoryPath: jest.fn(),
    LibraryDirectoryPath: jest.fn(),
    PicturesDirectoryPath: jest.fn(),
  };
});

享受!

于 2020-06-30T19:25:07.853 回答