peridot-php / peridot-list-reporter
A list reporter for the Peridot testing framework
Installs: 7 499
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 0
Requires
- peridot-php/peridot: ~1.8
Requires (Dev)
This package is not auto-updated.
Last update: 2024-11-05 03:28:34 UTC
README
A simple list reporter for the Peridot testing framework.
##Usage
We recommend installing the reporter to your project via composer:
$ composer require --dev peridot-php/peridot-list-reporter:~1.0
You can register the reporter via your peridot.php file.
<?php use Peridot\Reporter\ListReporter\ListReporterPlugin; return function(EventEmitterInterface $emitter) { $list = new ListReporterPlugin($emitter); };
##Running reporter tests
You can run the reporter specs and also preview the reporter in action like so:
$ vendor/bin/peridot specs/ -r list