We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 209aec6 commit 57fc2f5Copy full SHA for 57fc2f5
1 file changed
src/renderer/utils/auth/utils.test.ts
@@ -67,7 +67,7 @@ describe('renderer/utils/auth/utils.ts', () => {
67
68
beforeEach(() => {
69
// Mock OAUTH_DEVICE_FLOW_CLIENT_ID value
70
- Constants.OAUTH_DEVICE_FLOW_CLIENT_ID = 'mock-oauth-client-id' as ClientID;
+ Constants.OAUTH_DEVICE_FLOW_CLIENT_ID = 'FAKE_CLIENT_ID_123' as ClientID;
71
});
72
73
afterEach(() => {
@@ -432,7 +432,7 @@ describe('renderer/utils/auth/utils.ts', () => {
432
method: 'GitHub App',
433
} as Account),
434
).toBe(
435
- 'https://github.com/settings/connections/applications/mock-oauth-client-id',
+ 'https://github.com/settings/connections/applications/FAKE_CLIENT_ID_123',
436
);
437
438
expect(
0 commit comments