Skip to content
Permalink
Browse files

Merge pull request #19264 from atom/wl-add-missing-it

Add 'it' in front of spec descriptions
  • Loading branch information...
50Wliu committed May 4, 2019
2 parents 55ecd53 + d8559d3 commit 68b984ff12755ccf44c00cddf45f7c88122f3958
Showing with 1 addition and 1 deletion.
  1. +1 −1 spec/jasmine-list-reporter.js
@@ -2,7 +2,7 @@ const { TerminalReporter } = require('jasmine-tagged')

class JasmineListReporter extends TerminalReporter {
fullDescription (spec) {
let fullDescription = spec.description
let fullDescription = 'it ' + spec.description
let currentSuite = spec.suite
while (currentSuite) {
fullDescription = currentSuite.description + ' > ' + fullDescription

0 comments on commit 68b984f

Please sign in to comment.
You can’t perform that action at this time.