Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 940 Bytes

padding-around-expect-groups.md

File metadata and controls

42 lines (30 loc) · 940 Bytes

Enforce padding around expect groups (padding-around-expect-groups)

🔧 This rule is automatically fixable by the --fix CLI option.

Rule Details

This rule enforces a line of padding before and after 1 or more expect statements

Note that it doesn't add/enforce a padding line if it's the last statement in its scope and it doesn't add/enforce padding between two or more adjacent expect statements.

Examples of incorrect code for this rule:

test('thing one', () => {
  let abc = 123;
  expect(abc).toEqual(123);
  expect(123).toEqual(abc);
  abc = 456;
  expect(abc).toEqual(456);
});

Examples of correct code for this rule:

test('thing one', () => {
  let abc = 123;

  expect(abc).toEqual(123);
  expect(123).toEqual(abc);

  abc = 456;

  expect(abc).toEqual(456);
});