Skip to content

Commit 1a66e21

Browse files
committed
format
1 parent 9ab9a0f commit 1a66e21

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

lambdas/functions/control-plane/src/github/octokit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ vi.mock('../github/auth', async () => ({
1919
}));
2020

2121
vi.mock('@octokit/rest', async () => ({
22-
Octokit: vi.fn().mockImplementation(function() {
22+
Octokit: vi.fn().mockImplementation(function () {
2323
return mockOctokit;
2424
}),
2525
}));

lambdas/functions/control-plane/src/pool/pool.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const mockOctokit = {
2020
};
2121

2222
vi.mock('@octokit/rest', () => ({
23-
Octokit: vi.fn().mockImplementation(function() {
23+
Octokit: vi.fn().mockImplementation(function () {
2424
return mockOctokit;
2525
}),
2626
}));

lambdas/functions/control-plane/src/scale-runners/job-retry.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const mockOctokit = {
4242
};
4343

4444
vi.mock('@octokit/rest', async () => ({
45-
Octokit: vi.fn().mockImplementation(function() {
45+
Octokit: vi.fn().mockImplementation(function () {
4646
return mockOctokit;
4747
}),
4848
}));

lambdas/functions/control-plane/src/scale-runners/scale-down.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const mockOctokit = {
2626
paginate: vi.fn(),
2727
};
2828
vi.mock('@octokit/rest', () => ({
29-
Octokit: vi.fn().mockImplementation(function() {
29+
Octokit: vi.fn().mockImplementation(function () {
3030
return mockOctokit;
3131
}),
3232
}));

lambdas/functions/control-plane/src/scale-runners/scale-up.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const mockSSMClient = mockClient(SSMClient);
3535
const mockSSMgetParameter = vi.mocked(getParameter);
3636

3737
vi.mock('@octokit/rest', () => ({
38-
Octokit: vi.fn().mockImplementation(function() {
38+
Octokit: vi.fn().mockImplementation(function () {
3939
return mockOctokit;
4040
}),
4141
}));

lambdas/functions/gh-agent-syncer/src/syncer/syncer.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const mockOctokit = {
1515
},
1616
};
1717
vi.mock('@octokit/rest', async () => ({
18-
Octokit: vi.fn().mockImplementation(function() {
18+
Octokit: vi.fn().mockImplementation(function () {
1919
return mockOctokit;
2020
}),
2121
}));

lambdas/functions/webhook/src/sqs/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const mockSQS = {
88
}),
99
};
1010
vi.mock('@aws-sdk/client-sqs', () => ({
11-
SQS: vi.fn().mockImplementation(function() {
11+
SQS: vi.fn().mockImplementation(function () {
1212
return mockSQS;
1313
}),
1414
}));

0 commit comments

Comments
 (0)