Skip to content

Commit

Permalink
remove bold markers for readme display
Browse files Browse the repository at this point in the history
  • Loading branch information
staxmanade committed Mar 5, 2017
1 parent 6d69f5b commit b0cf053
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,15 @@ By running `approvals --help`
`approvals testName [options]`
**[-f | --forceapproveall]** : Skip the approve step and apply the results to the .approved.txt file (good for a first time run)
[-f | --forceapproveall] : Skip the approve step and apply the results to the .approved.txt file (good for a first time run)
**[--reporter difftool]** : supports multiple EX: `--reporter opendiff --reporter gitdiff`
[--reporter difftool] : supports multiple EX: `--reporter opendiff --reporter gitdiff`
**[--outdir]** : dir to place approval file - defaults to current directory
[--outdir] : dir to place approval file - defaults to current directory
**[--verbose]** : extra debug info
[--verbose] : extra debug info
**TODO:** : We need to extend the supported args to include other approval options. (file an [issue](https://github.com/approvals/Approvals.NodeJS/issues) if you need one that's not here)
TODO: : We need to extend the supported args to include other approval options. (file an [issue](https://github.com/approvals/Approvals.NodeJS/issues) if you need one that's not here)
# Examples
Expand Down
4 changes: 3 additions & 1 deletion test/readmeTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ describe("Readme", function () {
var currentReadme = fs.readFileSync(path.join(__dirname, '../', 'readme.md')).toString()
var cliDocsRaw = fs.readFileSync(path.join(__dirname, '../bin', 'help.md')).toString()

cliDocsRaw = cliDocsRaw.replace(/ /g, ' ');
cliDocsRaw = cliDocsRaw
.replace(/ /g, ' ')
.replace(/\*\*/g, '');

var approvalsSource = fs.readFileSync(path.join(__dirname, '../lib', 'Approvals.js')).toString();

Expand Down

0 comments on commit b0cf053

Please sign in to comment.