Skip to content

Commit

Permalink
chore: fix typo in jest example
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyJones committed Jul 17, 2020
2 parents c8c7a9a + b233d25 commit 9730690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/jest/__tests__/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pactWith({ consumer: "MyConsumer", provider: "MyProvider" }, provider => {
})

// add expectations
it("returns a sucessful body", () => {
it("returns a successful body", () => {
return getMeDogs({
url: provider.mockService.baseUrl,
}).then(dogs => {
Expand Down Expand Up @@ -84,7 +84,7 @@ pactWith({ consumer: "MyConsumer", provider: "MyProvider" }, provider => {
})
})

it("returns a sucessful body", () => {
it("returns a successful body", () => {
return getMeCats({
url: provider.mockService.baseUrl,
}).then(cats => {
Expand Down

0 comments on commit 9730690

Please sign in to comment.