Skip to content

Hylozoic/babel-plugin-remove-style

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published