testidplugin
v1.0.5
Published
A Babel plugin to automatically inject `data-testid` attributes into JSX elements for testing purposes. This plugin works with React and TypeScript projects, ensuring that all relevant elements have unique and consistent `data-testid` attributes, making i
Downloads
60
Readme
testIdPlugin
A Babel plugin to automatically inject data-testid
attributes into JSX elements for testing purposes. This plugin works with React and TypeScript projects, ensuring that all relevant elements have unique and consistent data-testid
attributes, making it easier to write tests with libraries like Jest, Testing Library, or Cypress.
Features
- Automatically adds
data-testid
attributes to JSX elements. - Supports
prefix
to customize the generated test IDs. - Propagates parent
data-testid
values for nested elements. - Skips elements that already have a
data-testid
attribute. - Handles Material-UI component names, converting them to HTML elements when necessary.
- Supports JSX and TSX files.
Installation
To install this plugin, use npm or yarn:
npm install testIdPlugin --save-dev
or
yarn add testIdPlugin --dev
Configuration
You can configure the plugin by adding it to your Babel configuration (babel.config.js
or .babelrc
).
Example Configuration
// babel.config.js
module.exports = {
presets: [
'@babel/preset-react',
'@babel/preset-typescript',
],
plugins: [
[
'testIdPlugin',
{
prefix: 'my-prefix-', // Optional: Set a custom prefix for test IDs
include: ['src/**/*'], // Optional: Glob pattern to include files for transformation
exclude: ['node_modules/**'], // Optional: Glob pattern to exclude files from transformation
},
],
],
};
Plugin Options
prefix
(optional): A string to prefix alldata-testid
values. Default is an empty string.include
(optional): An array of file paths or glob patterns to specify which files to include for transformation. Default is all files.exclude
(optional): An array of file paths or glob patterns to specify which files to exclude from transformation. Default is no exclusion.
How It Works
- The plugin works by traversing the JSX elements in your code and checking if they already have a
data-testid
attribute. - If not, it generates a unique
data-testid
for each element by combining its parent element'sdata-testid
, its own tag name, and a sibling index to ensure uniqueness. - The plugin also handles Material-UI components, such as
Box
,Typography
, and others, mapping them to their corresponding native HTML elements (e.g.,div
,span
).
Example:
Given the following JSX:
function MyComponent() {
return (
<div>
<Typography>
<FormControlLabel />
</Typography>
</div>
);
}
The plugin would transform it to:
function MyComponent() {
return (
<div data-testid="div">
<span data-testid="div-typography">
<label data-testid="div-typography-label" />
</span>
</div>
);
}
Customizing the Generated Test IDs
- The generated test ID combines the
data-testid
of the parent element, the element's tag name, and a sibling index to ensure uniqueness. - Example format:
"parentTestId-elementName-siblingIndex"
.
If a parent data-testid
is present, the plugin will propagate it to child elements.
Example Project Setup
- Create a
babel.config.js
file in your project root.
touch babel.config.js
- Add the following configuration to the
babel.config.js
file:
module.exports = {
presets: [
'@babel/preset-react',
'@babel/preset-typescript',
],
plugins: [
[
'testIdPlugin',
{
prefix: 'test-', // Optional: Custom prefix for test IDs
},
],
],
};
- Run Babel to transform your JSX/TSX files:
npx babel src --out-dir dist
- Your JSX files will now include
data-testid
attributes.
Development
To contribute to this plugin, follow these steps:
- Clone the repository:
git clone https://github.com/your-username/testIdPlugin.git
cd testIdPlugin
- Install dependencies:
npm install
Make changes and test the plugin.
To publish a new version, run:
npm version patch # or minor/major
npm publish
License
This plugin is open-source software, licensed under the MIT License.