Skip to content

binodnp/jasmine-markdown-reporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Markdown Reporter for Jasmine

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published