We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fde052e commit e223614Copy full SHA for e223614
packages/database/test/database.test.ts
@@ -53,8 +53,7 @@ describe('Database Tests', () => {
53
it('Can get database with custom URL', () => {
54
const db = defaultApp.database('http://foo.euw1.firebasedatabase.app');
55
expect(db).to.be.ok;
56
- // The URL is assumed to be secure if no port is specified.
57
- expect(db.ref().toString()).to.equal('http://foo.euw1.firebasedatabase.app/');
+ expect(db.ref().toString()).to.equal('https://foo.euw1.firebasedatabase.app/');
58
});
59
60
it('Can get database with custom URL and port', () => {
0 commit comments