mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
1.2 KiB
1.2 KiB
describe/test titles should be valid (valid-title)
Checks that the title of Jest blocks are valid by ensuring that titles are:
- not prefixed with their block name,
- have no leading or trailing spaces
Rule Details
duplicatePrefix
A describe/ test block should not start with duplicatePrefix
Examples of incorrect code for this rule
test('test foo', () => {});
it('it foo', () => {});
describe('foo', () => {
test('test bar', () => {});
});
describe('describe foo', () => {
test('bar', () => {});
});
Examples of correct code for this rule
test('foo', () => {});
it('foo', () => {});
describe('foo', () => {
test('bar', () => {});
});
accidentalSpace
A describe/ test block should not contain accidentalSpace
Examples of incorrect code for this rule
test(' foo', () => {});
it(' foo', () => {});
describe('foo', () => {
test(' bar', () => {});
});
describe(' foo', () => {
test('bar', () => {});
});
describe('foo ', () => {
test('bar', () => {});
});
Examples of correct code for this rule
test('foo', () => {});
it('foo', () => {});
describe('foo', () => {
test('bar', () => {});
});