1.0.1 • Published 3 years ago

jasmine-markdown-reporter v1.0.1

Weekly downloads
12
License
Apache-2.0
Repository
github
Last release
3 years ago

Jasmine Markdown Reporter

Generates jasmine test report as a single document that can live in your project. Uses Github-flavored markdown.

Quickstart

npm install jasmine-markdown-reporter --save-dev
const path = require('path')
const MarkdownReporter = require('jasmine-markdown-reporter')

global.jasmine.getEnv().clearReporters()
// add other reporters

global.jasmine.getEnv().addReporter(new MarkdownReporter({
  title: 'Jasmine Test Results',
  destination: path.join(process.cwd(), 'spec.md'),
  // mode: 'markdown' // 'html' or 'markdown'
}))

and then run

jasmine

produces a report spec.md on your project root directory which looks something like this

Jasmine Markdown Reporter

Passing Tests

look like this

Passing Test

Test Summary

looks like this

Summary