Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 763 Bytes

File metadata and controls

35 lines (25 loc) · 763 Bytes

vitest/require-local-test-context-for-concurrent-snapshots

📝 Require local Test Context for concurrent snapshot tests.

💼⚠️ This rule is enabled in the ✅ recommended config. This rule warns in the 🌐 all config.

Rule details

Examples of incorrect code for this rule:

test.concurrent('myLogic', () => {
  expect(true).toMatchSnapshot()
})

describe.concurrent('something', () => {
  test('myLogic', () => {
    expect(true).toMatchInlineSnapshot()
  })
})

Examples of correct code for this rule:

test.concurrent('myLogic', ({ expect }) => {
  expect(true).toMatchSnapshot()
})

test.concurrent('myLogic', (context) => {
  context.expect(true).toMatchSnapshot()
})