Permalink
Browse files
Add 'it' in front of spec descriptions
- Loading branch information...
Showing
with
1 addition
and
1 deletion.
-
+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
d8559d3