eslint-plugin-jest-formatting
Version:
ESLint rules for formatting jest tests
33 lines (23 loc) • 526 B
JavaScript
/* 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);
});
});