jestでFirestoreテストしようとして TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received type object
jestを使って「ローカルでない」Firestoreに関連するテストをしようとしたところ以下のエラーが発生しました。
TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received type object
process.env.GOOGLE_APPLICATION_CREDENTIALS
には正しい認証ファイルのパスが設定されており以下のコードでエラーが発生。
const Firestore = require('@google-cloud/firestore');
const firestore = new Firestore();
jest.config.jsに以下を追記することで解決しました。
testEnvironment: 'node'
参考
https://github.com/firebase/firebase-admin-node/issues/793#issuecomment-592867589
Author And Source
この問題について(jestでFirestoreテストしようとして TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received type object), 我々は、より多くの情報をここで見つけました https://qiita.com/sekitaka_1214/items/5be68b99bb3c118ebf79著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .