Package Exports
- @serenity-js/jasmine
- @serenity-js/jasmine/lib/adapter
- @serenity-js/jasmine/lib/adapter/index.js
- @serenity-js/jasmine/lib/index.js
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 (@serenity-js/jasmine) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Serenity/JS
Serenity/JS is an innovative framework designed to make acceptance and regression testing of complex software systems faster, more collaborative and easier to scale.
To get started, check out the comprehensive Serenity/JS Handbook, API documentation, and Serenity/JS project templates on GitHub.
If you have any questions or just want to say hello, join the Serenity/JS Community Chat.
Serenity/JS Jasmine
@serenity-js/jasmine contains a Jasmine reporter
you register with Jasmine test runner
to enable integration between Jasmine and Serenity/JS.
Installation
To install this module, run the following command in your computer terminal:
npm install --save-dev @serenity-js/{core,jasmine}Learn more about integrating Serenity/JS with Jasmine
Command line usage
jasmine --reporter=@serenity-js/jasmineProgrammatic usage
import serenityReporterForJasmine = require('@serenity-js/jasmine');
jasmine.getEnv().addReporter(serenityReporterForJasmine);