我目前正在研究Google Cloud Functions,並且在打字稿中有一些基本的測試功能。 函數按預期工作,我現在試圖用Jasmine創建單元測試。 (我沒有按照文檔使用Chai/sinon,因爲我的項目的其餘部分使用了茉莉花)。 我有兩個問題 1)測試不運行,由於考慮到測試並運行這個錯誤 throw new Error('Firebase config variables are not
我發現很奇怪的是,當我把它放在一個.html和檢查控制檯日誌一切看起來罰款執行相同的代碼,但是當我把完全相同的代碼塊沒有云功能中執行並因某種原因被跳過。我需要做的就是從配置對象中獲取一些配置參數並根據需要使用它們。 var db = admin.database().ref();
var configRef = db.child("config");
configRef.on
我試圖Firebase雲功能在我的應用程序中使用此代碼在創建2小時後刪除數據。 exports.deleteOldItems = functions.database.ref('/Rooms/{pushId}')
.onWrite(event => {
var ref = event.data.ref.parent; // reference to the items
var