Skip to content

Commit

Permalink
Merge pull request #86 from coyoteecd/docs-missing-prefix
Browse files Browse the repository at this point in the history
fix: missing documentation for prefixes option
  • Loading branch information
tmcgee123 committed Jan 14, 2021
2 parents 9339a2b + 9bb7435 commit f78dd34
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -38,7 +38,12 @@ karma.conf.js file
suppressPassed: false, // do not print information about passed tests
suppressSkipped: true, // do not print information about skipped tests
showSpecTiming: false, // print the time elapsed for each spec
failFast: true // test would finish with error when a first fail occurs.
failFast: true, // test would finish with error when a first fail occurs
prefixes: {
success: ' OK: ', // override prefix for passed tests, default is '✓ '
failure: 'FAILED: ', // override prefix for failed tests, default is '✗ '
skipped: 'SKIPPED: ' // override prefix for skipped tests, default is '- '
}
},
plugins: ["karma-spec-reporter"],
...
Expand Down

0 comments on commit f78dd34

Please sign in to comment.