cssguard
v1.1.2
Published
> An easy way to test your CSS.
Readme
CSS Guard 
An easy way to test your CSS.
Install
npm install --save-dev cssguardUsage
cd into-my-projectmkdir test && cd $_ && touch test.html- Install with npm commands
- Load the csstest.css file into your html.
@import '../node_modules/cssguard/cssguard.css';or
<link rel="stylesheet" href="../node_modules/cssguard/dist/cssguard.min.css">- Create your test suite
<main class="test-suite">
<h1 class="test-suite-title">Project name</h1>
<section>
<h1 class="test-module">Test section</h1>
<h3 class="test-it">The test <code>.example-code</code></h3>
<div class="test-run">
<p>Some test here</p>
</div>
</section>
</main>- Test your component :D
API
.test-suite.test-suite-title.test-module.test-it.test-run
License
MIT © Filipe Linhares
