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 c05beef commit 94cb82aCopy full SHA for 94cb82a
run/idp-sql/test/system.test.js
@@ -91,6 +91,8 @@ describe('System Tests', () => {
91
}
92
93
// Retrieve ID token for testing
94
+
95
+ console.log('Retrieving IDP token...');
96
const customToken = await admin.auth().createCustomToken('a-user-id');
97
const response = await got(
98
`https://identitytoolkit.googleapis.com/v1/accounts:signInWithCustomToken?key=${IDP_KEY}`,
@@ -111,6 +113,8 @@ describe('System Tests', () => {
111
113
const tokens = JSON.parse(response.body);
112
114
CUSTOM_TOKEN = tokens.idToken;
115
if (!CUSTOM_TOKEN) throw Error('Unable to acquire an IDP token.');
116
117
+ console.log('Retrieved IDP token');
118
});
119
120
after(() => {
0 commit comments