Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update help manual
  • Loading branch information
amitguptagwl committed Mar 25, 2017
1 parent 57b3ffd commit 917ad13
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions man/stubmatic.1
Expand Up @@ -11,8 +11,6 @@ Arguments
-p, --port http port number (default is 7777)
-P https port number
--host Host name
-m, --mapping file path of yaml mapping file (response.yaml)
-s, --stub path for stubs only if mapping file has relative path and they are not in current folder
-c, --config config file name. It must be json file.
-h, --help display on screen help
-d absolute or relative location of repo. '.' is default.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "stubmatic",
"preferGlobal": true,
"version": "5.0.3",
"version": "5.0.4",
"description": "A stub server to mock behaviour of HTTP(s) / REST / SOAP services",
"man": "./man/stubmatic.1",
"main": "./lib/stubmatic.js",
Expand Down
2 changes: 1 addition & 1 deletion spec/cli_spec.js
Expand Up @@ -13,7 +13,7 @@ describe('CLI', function () {
cli(["node", "stubmatic", "--version" ,"tobeignored"]);

expect(console.log.calls.count()).toEqual(1);
expect(console.log.calls.argsFor(0)[0]).toEqual( "5.0.3");
expect(console.log.calls.argsFor(0)[0]).toEqual( "5.0.4");
});

it('should log help', function () {
Expand Down

0 comments on commit 917ad13

Please sign in to comment.