Skip to content

Commit

Permalink
Update 1-read-users-from-live-firebase-project.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
50Fifty committed Dec 19, 2023
1 parent 1d5ee87 commit 8f6aea9
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import * as myMocha from 'mocha';
import * as admin from "firebase-admin";
import { serviceAccountKeyFilePath } from '../configs/test-setup';
import * as assert from 'assert';

const testName = "1. Integration Test: read users from live Firebase project";

Expand All @@ -17,5 +18,6 @@ myMocha.describe(testName, function () {

myMocha.it('Should be able to read users from live Firebase project', async function () {
const users = await admin.auth().listUsers();
assert(users !== undefined, 'listUsers() returned undefined');
});
});

0 comments on commit 8f6aea9

Please sign in to comment.