@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
10 lines (9 loc) • 413 B
JavaScript
import { JSXAttribute } from '../../../ast-nodes/jsx-attribute';
import { JSXElementHelper } from '../../../ast-nodes/jsx-element-helper';
// Rename data-testid prop to testId if present
export function updateTestIdAttributeFix(node, fixer) {
const testIdAttr = JSXElementHelper.getAttributeByName(node, 'data-testid');
if (testIdAttr) {
return JSXAttribute.updateName(testIdAttr, 'testId', fixer);
}
}