eslint-plugin-ui-testing
Version:
ESLint rules for UI testing tools WebdriverIO, Cypress, TestCafe, Playwright, Puppeteer
10 lines (9 loc) • 508 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TEST_BLOCKS_PATTERN = exports.NO_AUTOMATION_TOOL_SET_MESSAGE = exports.LOC_SOF = void 0;
exports.LOC_SOF = {
start: { line: 0, column: 0 },
end: { line: 0, column: 0 },
};
exports.NO_AUTOMATION_TOOL_SET_MESSAGE = 'Please set the appropriate automation tool used, choose one from: cypress, puppeteer, playwright, testcafe, webdriverio';
exports.TEST_BLOCKS_PATTERN = '/(((it|test)$)|(^(before|after)(Each|All)$))/';