Skip to content

Commit c0aec49

Browse files
authored
chore(lint): fix
1 parent 545beb9 commit c0aec49

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

__tests__/functions/admin.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {COLORS} from '../../src/functions/colors.js'
44
import * as github from '@actions/github'
55
import * as core from '@actions/core'
66

7-
vi.mock('@actions/github', { spy: true })
7+
vi.mock('@actions/github', {spy: true})
88

99
const debugMock = vi.spyOn(core, 'debug')
1010
const warningMock = vi.spyOn(core, 'warning')

__tests__/functions/post.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {COLORS} from '../../src/functions/colors.js'
77
import * as postDeploy from '../../src/functions/post-deploy.js'
88
import * as contextCheck from '../../src/functions/context-check.js'
99

10-
vi.mock('@actions/github', { spy: true })
10+
vi.mock('@actions/github', {spy: true})
1111

1212
const validBooleanInputs = {
1313
skip_completing: false

__tests__/main.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import * as timestamp from '../src/functions/timestamp.js'
2121
import * as deploymentConfirmation from '../src/functions/deployment-confirmation.js'
2222
import {COLORS} from '../src/functions/colors.js'
2323

24-
vi.mock('@actions/github', { spy: true })
24+
vi.mock('@actions/github', {spy: true})
2525

2626
const setOutputMock = vi.spyOn(core, 'setOutput')
2727
const saveStateMock = vi.spyOn(core, 'saveState')

0 commit comments

Comments
 (0)