0.1.0 • Published 7 years ago

babel-plugin-remove-style v0.1.0

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
7 years ago

babel-plugin-remove-style

Don't care about CSS in your tests? Ignore style props in your tests the brute force way: by removing them with the transpiler!

Install

npm install babel-plugin-remove-style --save-dev

or

yarn add babel-plugin-remove-style --dev

Use

In your Babel config (shown here as a package.json property):

  "babel": {
    "env": {
      "test": {
        "plugins": [
          [ "remove-style" ]
        ]
      }
    }
  }

Obviously, your test runner will need to be configured to use Babel. Note that Jest agressively caches transpiled code, and might need to be run with a --no-cache for you to see the change after installing the plugin.