@scorpionknifes/fireo
Version:
Fork of Fireo, Google Cloud Firestore modern and simplest convenient ORM package in NodeJs. FireO is specifically designed for the Google's Firestore
12 lines (9 loc) • 353 B
JavaScript
const { Firestore: CloudFirestore } = require("@google-cloud/firestore");
const firestore = require("../../../Firestore");
const chai = require("chai");
const expect = chai.expect;
describe("Firestore", () => {
it("should be instance of Cloud firestore", () => {
expect(firestore.conn instanceof CloudFirestore).to.be.true;
});
});