Skip to content

Commit

Permalink
Fixing readme formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcampbell committed Sep 6, 2017
1 parent afc00e9 commit 5647e86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ Read more about Pact and the problems it solves at https://docs.pact.io/
Please feel free to contribute, we do accept pull requests.
This solution has been built using VS2017, you will need it to open this project.

## Known Issues
1. When debugging a test locally (either consumer or provider) if you click the stop button in your test runner, it will abort the process abruptly and the ruby runtime will not get cleaned up. If you do this, simply kill the ruby process from your task/process manager. We recommend you play the test through to the end to avoid this issue. See https://github.com/SEEK-Jobs/pact-net/issues/108 for more details.

## Usage
Below are some samples of usage.
For examples of Version 2 usage, please see the [Samples](https://github.com/SEEK-Jobs/pact-net/blob/master/Samples/EventApi/Consumer.Tests/EventsApiConsumerTests.cs).
Expand All @@ -32,9 +35,6 @@ We have also written some `//NOTE:` comments inline in the code to help explain
2. If you want to use SSL, you will need to ignore certification validation errors globally (currently we just generate a self signed cert). You can do this in the tests by adding `ServicePointManager.ServerCertificateValidationCallback +=
(sender, cert, chain, sslPolicyErrors) => true;` before any HTTP clients and the PactBuilder objects are instantiated. NOTE: DO NOT add this configuration to your production code!

## Known Issues
1. When debugging a test locally (either consumer or provider) if you click the stop button in your test runner, it will abort the process abruptly and the ruby runtime will not get cleaned up. If you do this, simply kill the ruby process from your task/process manager. We recommend you play the test through to the end to avoid this issue. See https://github.com/SEEK-Jobs/pact-net/issues/108 for more details.

### Installing

Via Nuget
Expand Down

0 comments on commit 5647e86

Please sign in to comment.