Skip to content

Commit

Permalink
updated spec message
Browse files Browse the repository at this point in the history
  • Loading branch information
craigtaub committed Jan 27, 2017
1 parent 4810446 commit b8a6237
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/reporters/doc.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('Doc reporter', function () {
root: false,
title: expectedTitle
}
it('should log html with expected header', function () {
it('should log html with expected title', function () {
runner.on = function (event, callback) {
if (event === 'suite') {
callback(suite);
Expand Down Expand Up @@ -103,7 +103,7 @@ describe('Doc reporter', function () {
return '';
}
}
it('should log expected html', function () {
it('should log html with expected title and body', function () {
runner.on = function (event, callback) {
if (event === 'pass') {
callback(test);
Expand All @@ -129,7 +129,7 @@ describe('Doc reporter', function () {
return '';
}
}
it('should log expected html', function () {
it('should log html with expected title and body', function () {
runner.on = function (event, callback) {
if (event === 'fail') {
callback(test);
Expand Down

0 comments on commit b8a6237

Please sign in to comment.