All Projects â†’ openstax â†’ css-coverage.js

openstax / css-coverage.js

Licence: other
🎨 Code Coverage for your CSS!

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects
coffeescript
4710 projects

Projects that are alternatives of or similar to css-coverage.js

metal.test
Deprecated, superseded by https://github.com/metal-ci/test
Stars: ✭ 41 (+78.26%)
Mutual labels:  coverage
example-scala
Scala coverage example
Stars: ✭ 33 (+43.48%)
Mutual labels:  coverage
covviz
Multi-sample genome coverage viewer to observe large, coverage-based anomalies alongside annotations and sample metadata
Stars: ✭ 42 (+82.61%)
Mutual labels:  coverage
pytest-notebook
A pytest plugin for regression testing and regenerating Jupyter Notebooks
Stars: ✭ 35 (+52.17%)
Mutual labels:  coverage
tikione-jacocoverage
NetBeans module that provides JaCoCo code coverage for Ant based Java SE, Java EE and NetBeans Module projects (JDK5,6,7,8 compatible).
Stars: ✭ 25 (+8.7%)
Mutual labels:  coverage
nvim-goc.lua
Go Coverage for Neovim
Stars: ✭ 17 (-26.09%)
Mutual labels:  coverage
phpunit-travis-ci-coverage-example
phpUnit Testing on Travis-CI with Code Coverage on CodeCov
Stars: ✭ 30 (+30.43%)
Mutual labels:  coverage
gobco
Measure branch coverage of golang tests
Stars: ✭ 36 (+56.52%)
Mutual labels:  coverage
mutant-swarm
Mutation testing framework and code coverage for Hive SQL
Stars: ✭ 20 (-13.04%)
Mutual labels:  coverage
instrumentation
Assorted pintools
Stars: ✭ 24 (+4.35%)
Mutual labels:  coverage
pytest-coverage-comment
Comments a pull request with the pytest code coverage badge and full report
Stars: ✭ 32 (+39.13%)
Mutual labels:  coverage
rollup-plugin-istanbul
Seamless integration between Rollup and Istanbul
Stars: ✭ 39 (+69.57%)
Mutual labels:  coverage
example-node-and-browser-qunit-ci
Example project with continuous integration for linting and cross-browser testing of isomorphic JavaScript.
Stars: ✭ 18 (-21.74%)
Mutual labels:  coverage
watson-personality-insights-php
Framework Agnostic Watson Personality Insights Client
Stars: ✭ 13 (-43.48%)
Mutual labels:  coverage
javacard-gradle-template
JavaCard project template for building CAP and running JCardSim with gradle + coverage
Stars: ✭ 27 (+17.39%)
Mutual labels:  coverage
urlredir
Educational URL redirector service in Go
Stars: ✭ 26 (+13.04%)
Mutual labels:  coverage
LocalCoverage.jl
Trivial functions for working with coverage for packages locally.
Stars: ✭ 55 (+139.13%)
Mutual labels:  coverage
Cake.Coverlet
Coverlet extensions for Cake Build
Stars: ✭ 39 (+69.57%)
Mutual labels:  coverage
libfuzzer-cov
Get actually nice HTML coverage overview on libfuzzer runs
Stars: ✭ 20 (-13.04%)
Mutual labels:  coverage
cargo-llvm-cov
Cargo subcommand to easily use LLVM source-based code coverage (-C instrument-coverage).
Stars: ✭ 181 (+686.96%)
Mutual labels:  coverage

CSS Coverage!

Greenkeeper badge

Generates coverage information of your CSS files and creates reports using the optional source maps.

How is this different from other CSS coverage tools?

  • gives coverage information on your source files (SASS/LESS/Stylus/etc), not just the compiled CSS file
  • provides a command line script to run against individual test files

What can I do with css-coverage?

You can use the command line version to:

  • test a CSS and HTML file one at a time
  • use css-coverage as part of a build (like in GruntJS)
  • generate a LCOV Report for use in services like Coveralls or HTML reports using lcov

Can I make Reports?

You can also generate LCOV Files for Coveralls or just HTML reports:

# Run CSS Coverage and generate a LCOV report (with verbose output)
css-coverage --css ./test/test.css --html ./test/test.html --lcov ./css.lcov

# Optionally Generate an HTML report
genhtml ./css.lcov --output-directory ./coverage

Commandline Options

Usage: css-coverage [options]

Generate coverage info for a CSS file against an HTML file. This supports loading sourcemaps by using the sourceMappingURL=FILENAME.map CSS comment

Options:
  --html [path/to/file.html]               path to a local HTML file
  --css [path/to/file.css]                 path to a local CSS file
  --lcov [path/to/output.lcov]             the LCOV output file
  --verbose                                verbose/debugging output
  --ignore-source-map                      disable loading the sourcemap if one is found
  --ignore-declarations [move-to,content]  A comma-separated list of declarations to ignore
  -h, --help                               output usage information
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].