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 5ee6096 commit 324ce39Copy full SHA for 324ce39
packages/database/test/helpers/util.ts
@@ -15,7 +15,7 @@
15
* limitations under the License.
16
*/
17
18
-import * as Util from '@firebase/util';
+import { uuidv4 } from '@firebase/util';
19
20
import { Database, ref } from '../../src';
21
import { ConnectionTarget } from '../../src/api/test_access';
@@ -82,6 +82,6 @@ export function waitFor(waitTimeInMS: number) {
82
83
// Creates a unique reference using uuid
84
export function getUniqueRef(db: Database) {
85
- const path = Util.uuidv4();
+ const path = uuidv4();
86
return { ref: ref(db, path), path };
87
}
0 commit comments