1.0.6 • Published 7 years ago
babel-plugin-react-remove-attributes v1.0.6
babel-plugin-react-remove-attributes
About
This plugin will remove specified attributes from React components. The default attribute to be removed is data-test-id
.
This could be useful for removing tags used for testing eg:
<Button data-test-id="run_button">Run</Button>
will become:
<Button>Run</Button>
How to use
By default, data-test-id
is removed.
It's possible to pass attributes that we want to remove in several ways:
Input type | example |
---|---|
string | data-test-something |
array of strings | ['data-test-one', 'data-test-two'] |
regular expression | /data-test-*/ |
array of regular expressions | [/data-test-*/, /data-details-*/] |
TODO:
- Replace lodash isEqual check