UNPKG

eslint-plugin-jest-formatting

Version:
33 lines (23 loc) 526 B
/* eslint-disable @typescript-eslint/no-empty-function */ beforeAll(() => {}); beforeEach(() => {}); afterAll(() => {}); afterEach(() => {}); describe('no padding on top', () => { it('has no padding above', () => { expect(true); }); expect(true); expect(1); it('has padding above', () => { expect(true); }); it('also has padding above but not below', () => { expect(true); }); }); describe('padding above', () => { it('has no padding above or below', () => { expect(true); }); });