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 0673675 commit 1d7e48dCopy full SHA for 1d7e48d
packages/app-check/src/internal-api.test.ts
@@ -642,10 +642,10 @@ describe('internal api', () => {
642
const appCheck = initializeAppCheck(app, {
643
provider: new ReCaptchaV3Provider(FAKE_SITE_KEY)
644
});
645
- const appCheckServie = appCheck as AppCheckService;
+ const appCheckService = appCheck as AppCheckService;
646
const [token1, token2] = await Promise.all([
647
- getToken(appCheckServie),
648
- getToken(appCheckServie)
+ getToken(appCheckService),
+ getToken(appCheckService)
649
]);
650
expect(exchangeTokenStub.args[0][0].body['debug_token']).to.equal(
651
'my-debug-token'
0 commit comments