Skip to content

Commit c954452

Browse files
committed
Formatting fix
1 parent 3e2622b commit c954452

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

packages/app-check/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ export const TOKEN_REFRESH_TIME = {
4242
/**
4343
* One day in millis, for certain error code backoffs.
4444
*/
45-
export const ONE_DAY = 24 * 60 * 60 * 1000;
45+
export const ONE_DAY = 24 * 60 * 60 * 1000;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ describe('internal api', () => {
409409
expect(token.error?.message).to.include('00m');
410410
expect(warnStub.args[0][0]).to.include('503');
411411
});
412-
412+
413413
it('throttles 1d on 403', async () => {
414414
const appCheck = initializeAppCheck(app, {
415415
provider: new ReCaptchaV3Provider(FAKE_SITE_KEY)

packages/app-check/src/providers.test.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/**
2+
* @license
3+
* Copyright 2021 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
118
import '../test/setup';
219
import { getFakeGreCAPTCHA, getFullApp } from '../test/util';
320
import { ReCaptchaV3Provider } from './providers';

0 commit comments

Comments
 (0)