Package Exports
- css-tester
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (css-tester) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
css-tester 
chained testing with (chai) expect and jquery
// cucumber step definition integration example
this.Then(/^I should see the register countdown$/, function(callback, $) {
this.css('.panel.register').exists()
.css('.panel-heading').exists()
.css('h3').containsText('Anmelden').end()
.end()
.css('.panel-body').exists().containsText('Es sind noch 2 Plätze frei.').end();
callback();
});