Shalom Halbert
Shalom Halbert
I have the same issue. For some reason, running `npm install` resolved the error when running mocha tests from a non-debug terminal instance in Visual Studio Code, but running mocha...
Solved it by ignoring the import recommendation. Instead of ``` 'use strict'; const { initializeApp } = require('firebase-admin/app'); const { getFirestore, Timestamp, GeoPoint } = require('firebase-admin/firestore'); exports.initializeApp = () =>...
For anyone who'd like a potentially more complete solution, the following module is what I've come up with. ``` const firebaseFunctions = require('firebase-functions'); const errorToMetadata = (err) => { return...