Skip to content

davidgustys/babel-plugin-react-add-data-attribute

Repository files navigation

babel-plugin-react-data-testid

Build Status tested with jest styled with prettier

Example

in

const Foo = () =>
  <Bar>
    <div>
  </Bar>

out

const Foo = () =>
  <Bar data-test-id="Foo-Bar">
    <div data-test-id="Foo-Bar-div">
  </Bar>

Useful with styled-components

in

const Wrapper = styled.div`...`

const Bar = styled.div`...`

const Foo = () =>
  <Wrapper>
    <Bar>
  </Wrapper>

out

const Wrapper = styled.div`...`

const Bar = styled.div`...`

const Foo = () =>
  <Wrapper data-test="Foo-Wrapper">
    <Bar data-test="Foo-Wrapper-Bar">
  </Wrapper>

Install

yarn add davidgustys/babel-plugin-react-add-data-attribute

or

npm install davidgustys/babel-plugin-react-add-data-attribute

Usage

in .babelrc

"plugins": [
  "davidgustys/babel-plugin-react-add-data-attribute",
  ...

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published