Skip to content

Commit 05c390b

Browse files
chore(deps): update @biomejs/biome to v2.3.6 (#2393)
* chore(deps): update @biomejs/biome to v2.3.6 * fix lint issue Signed-off-by: Adam Setch <[email protected]> --------- Signed-off-by: Adam Setch <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Adam Setch <[email protected]>
1 parent a05f237 commit 05c390b

File tree

4 files changed

+47
-48
lines changed

4 files changed

+47
-48
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.5/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.6/schema.json",
33
"assist": {
44
"actions": {
55
"source": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"devDependencies": {
7777
"@babel/core": "7.28.5",
7878
"@babel/preset-env": "7.28.5",
79-
"@biomejs/biome": "2.3.5",
79+
"@biomejs/biome": "2.3.6",
8080
"@discordapp/twemoji": "16.0.1",
8181
"@electron/notarize": "3.1.1",
8282
"@primer/css": "22.0.2",

pnpm-lock.yaml

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/renderer/utils/notifications/handlers/index.test.ts

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,13 @@ describe('renderer/utils/notifications/handlers/index.ts', () => {
3131
['WorkflowRun', workflowRunHandler],
3232
];
3333

34-
it.each(cases)(
35-
'returns expected handler instance for %s',
36-
(type, expected) => {
37-
const notification = createPartialMockNotification({ type });
38-
const handler = createNotificationHandler(notification);
39-
expect(handler).toBe(expected);
40-
},
41-
);
34+
it.each(
35+
cases,
36+
)('returns expected handler instance for %s', (type, expected) => {
37+
const notification = createPartialMockNotification({ type });
38+
const handler = createNotificationHandler(notification);
39+
expect(handler).toBe(expected);
40+
});
4241

4342
it('falls back to default handler for unknown type', () => {
4443
const notification = createPartialMockNotification({

0 commit comments

Comments
 (0)