Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
abeatrix committed Mar 18, 2024
1 parent a2c6202 commit 29631e7
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions agent/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,8 @@ describe('Agent', () => {
client,
'commands/document (Method as part of a class)',
'TestClass.ts',
obtained => expect(obtained).toMatchInlineSnapshot(`
obtained =>
expect(obtained).toMatchInlineSnapshot(`
"const foo = 42
export class TestClass {
Expand All @@ -989,7 +990,8 @@ describe('Agent', () => {
client,
'commands/document (Function within a property)',
'TestLogger.ts',
obtained => expect(obtained).toMatchInlineSnapshot(`
obtained =>
expect(obtained).toMatchInlineSnapshot(`
"const foo = 42
export const TestLogger = {
startLogging: () => {
Expand All @@ -1013,7 +1015,8 @@ describe('Agent', () => {
client,
'commands/document (nested test case)',
'example.test.ts',
obtained => expect(obtained).toMatchInlineSnapshot(`
obtained =>
expect(obtained).toMatchInlineSnapshot(`
"import { expect } from 'vitest'
import { it } from 'vitest'
import { describe } from 'vitest'
Expand Down Expand Up @@ -1362,7 +1365,8 @@ describe('Agent', () => {
enterpriseClient,
'commands/document (enterprise client)',
'example.test.ts',
obtained => expect(obtained).toMatchInlineSnapshot(`
obtained =>
expect(obtained).toMatchInlineSnapshot(`
"import { expect } from 'vitest'
import { it } from 'vitest'
import { describe } from 'vitest'
Expand Down

0 comments on commit 29631e7

Please sign in to comment.