Skip to content

Commit 3c77191

Browse files
authored
Merge branch 'fei-v9-main' into ys/rut-v2-discovery
2 parents 2c36135 + 8cfe71d commit 3c77191

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

packages/database-compat/src/index.node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ try {
124124
// Types to export for the admin SDK
125125
export { Database, Query, Reference, enableLogging, ServerValue };
126126

127-
export { OnDisconnect } from '@firebase/database/src/api/OnDisconnect';
127+
export { OnDisconnect } from '@firebase/database';
128128

129129
declare module '@firebase/app-compat' {
130130
interface FirebaseNamespace {
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/**
2+
* @license
3+
* Copyright 2019 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
import { expect } from 'chai';
19+
20+
// TODO: Real tests (coming in the following PRs).
21+
it('true should equal to true', () => {
22+
expect(true).to.be.true;
23+
});

0 commit comments

Comments
 (0)