exadel-inc/esl

View on GitHub

Showing 23 of 23 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

cucumber.defineRule('click element', async ({elements}: TestEnv) => {
if (!elements.length) throw new Error('E2E: No elements found');
await elements[0].click();
});
packages/snapshot-tests/src/scenarios/element/scenarios.events.ts on lines 10..13

Function parseKeysPath has a Cognitive Complexity of 12 (exceeds 10 allowed). Consider refactoring.
Open

const parseKeysPath = (path: string): PathKeyDef[] => {
let start = 0;
const parts: PathKeyDef[] = [];
 
while (start < path.length) {
Severity: Minor
Found in packages/esl/src/esl-utils/misc/object/path.ts - About 35 mins to fix

Function _onKeyDown has a Cognitive Complexity of 11 (exceeds 10 allowed). Consider refactoring.
Open

@listen({event: 'keydown', target: document})
protected _onKeyDown(e: KeyboardEvent): void | boolean {
if (!this.current || e.key !== TAB) return;
 
if (this.current.a11y === 'none' || this.current.a11y === 'autofocus') return;
Severity: Minor
Found in packages/esl/src/esl-toggleable/core/esl-toggleable-manager.ts - About 25 mins to fix
Severity
Category
Status
Source
Language