Skip to content

Commit 0673675

Browse files
committed
fix: format
1 parent 5f60f6c commit 0673675

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/app-check/src/internal-api.test.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ describe('internal api', () => {
630630
expect(token).to.deep.equal({ token: fakeRecaptchaAppCheckToken.token });
631631
});
632632

633-
it('exchanges debug token only once if debug mode with no cached token', async () => {
633+
it('exchanges debug token only once if debug mode with no cached token', async () => {
634634
const exchangeTokenStub: SinonStub = stub(
635635
client,
636636
'exchangeToken'
@@ -643,7 +643,10 @@ describe('internal api', () => {
643643
provider: new ReCaptchaV3Provider(FAKE_SITE_KEY)
644644
});
645645
const appCheckServie = appCheck as AppCheckService;
646-
const [token1, token2] = await Promise.all([getToken(appCheckServie),getToken(appCheckServie)]);
646+
const [token1, token2] = await Promise.all([
647+
getToken(appCheckServie),
648+
getToken(appCheckServie)
649+
]);
647650
expect(exchangeTokenStub.args[0][0].body['debug_token']).to.equal(
648651
'my-debug-token'
649652
);

0 commit comments

Comments
 (0)