Skip to content

Latest commit

 

History

History
165 lines (89 loc) · 3.39 KB

File metadata and controls

165 lines (89 loc) · 3.39 KB

0.2.9 (2016-09-08)

Enhancements

  • Ignore the bad JSON files when consolidating from the JSON Directory: PR#13

    • Set the option ignoreBadJsonFile to true as a boolean to ignore the Bad JSON files

BugFix

  • Fixed the issue when report was breaking with the Cucumber's Doc String: Issue#14

0.2.8 (2016-08-30)

Enhancements

  • Generate consolidated report from multiple JSON files: PR#12

    • Provide the path of jsonDir to generate consolidated report,
var reporter = require('cucumber-html-reporter');
...
...

var options = {
        theme: 'bootstrap',
        jsonDir: 'test/reports',
        output: 'test/report/cucumber_report.html',
        reportSuiteAsScenarios: true,
        launchReport: true
    };

    reporter.generate(options);

0.2.7 (2016-08-16)

Enhancements

  • Launch report automatically after test ends
  • Pass a flag launchReport to the options
var reporter = require('cucumber-html-reporter');
...
...

var options = {
        theme: 'bootstrap',
        jsonFile: 'test/report/cucumber_report.json',
        output: 'test/report/cucumber_report.html',
        reportSuiteAsScenarios: true,
        launchReport: true
    };

    reporter.generate(options);

0.2.6 (2016-07-29)

BugFix

  • Fixed the issue where Error messages were not printing on the report.

0.2.5 (2016-07-28)

Enhancements

  • trim the text to be printed on report

0.2.4 (2016-07-28)

BugFix

0.2.3 (2016-07-26)

Enhancements

0.2.2 (2016-07-21)

BugFix

0.2.1 (2016-07-12)

Enhancements

  • Recursively create HTML report directory if does not exists
  • Remove outdated chai-fs depedency and use chai-should assertions
  • Lighter the background color or Scenario attachments

0.2.0 (2016-07-10)

Support for Cucumber@1.2.0 version

0.1.6 (2016-07-07)

Enhancements

  • Format feature descriptions on report
  • Add overflow scroll bar for the bigger data-table
  • print error messaged in the pre

0.1.5 (2016-07-05)

Enhancements

  • Show feature description on report

  • Updated README

Bug fixes

  • Fix bug when cucumber error message has kind of html tags as a string, e.g. is not defined.

    0.1.4 (2016-06-28)

    Enhancements

    • Using path instead of separators to make platform agnostic

    • Updated tests hooks

    • README updated with the instructions on how to integrate reporter to the cucumber hooks

    0.1.3 (2016-06-27)

    Bug fixes

    • Fixed a bug in template path

    • README updated

    0.1.1 (2016-06-27)

    New Features

    • Tooltip for Scenarios or Features in the HEADER based on reportSuiteAsScenarios flag

    • Add an optional callback for the generate(options, callback) function

    • Report pending steps in scenarios for bootstrap & foundation themes

    • Refactored and added more tests & validations