我是firebase的新手,需要测试包含firebase方法的服务。我在网上找不到任何有用的资源。 有人可以为firebase添加一些示例测试用例。 以下是我需要测试的服务方法示例:
createRootCollectionDocument$(collection: string, data: any): Observable<firebase.firestore.DocumentReference> {
const dataCollection: AngularFirestoreCollection<any> = this._firebase.collection(collection);
return Observable.from(
dataCollection.add({ ...data }).catch((err: firebase.firestore.FirestoreError) => {
throw err.message;
})
);
}
例如:
这看起来像一个类似的问题:Need some guidance on how to test AngularFireAuth properly
提前致谢。