Skip to content

Commit

Permalink
chore: synced pact-js docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Action committed Jul 8, 2024
1 parent fbaa925 commit 7b9162e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions website/docs/implementation_guides/javascript/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ custom_edit_url: https://github.com/pact-foundation/pact-js/edit/master/CHANGELO

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [13.1.0](https://github.com/pact-foundation/pact-js/compare/v13.0.0...v13.1.0) (2024-06-24)


### Features

* support alpine via pact-js-core 15.1.0 ([1d35c82](https://github.com/pact-foundation/pact-js/commit/1d35c826b225d99943b733aa7939361b8d8dfd78))

## [13.0.0](https://github.com/pact-foundation/pact-js/compare/v12.5.2...v13.0.0) (2024-06-17)


Expand Down
4 changes: 2 additions & 2 deletions website/docs/implementation_guides/javascript/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const provider = new PactV3({
provider: 'MyProvider',
});

// API Client that will fetch dogs from the Dog API
// API Client that will fetch dogs from the Dog API
// This is the target of our Pact test
public getMeDogs = (from: string): AxiosPromise => {
return axios.request({
Expand All @@ -158,7 +158,7 @@ const dogExample = { dog: 1 };
const EXPECTED_BODY = MatchersV3.eachLike(dogExample);

describe('GET /dogs', () => {
it('returns an HTTP 200 and a list of docs', () => {
it('returns an HTTP 200 and a list of dogs', () => {
// Arrange: Setup our expected interactions
//
// We use Pact to mock out the backend API
Expand Down

0 comments on commit 7b9162e

Please sign in to comment.