Skip to content

Commit

Permalink
chore: use recommended selectors in verifications
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Sep 5, 2023
1 parent 17be53c commit 9bb0d10
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/e2e/test/provider.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ describe('Pact Verification', () => {
{
matchingBranch: true,
},
{
mainBranch: true,
},
{
deployedOrReleased: true,
},
],

// Enables "pending pacts" feature
Expand Down
6 changes: 6 additions & 0 deletions examples/graphql/src/provider.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ describe('Pact Verification', () => {
{
matchingBranch: true,
},
{
mainBranch: true,
},
{
deployedOrReleased: true,
},
],
logLevel: LOG_LEVEL as LogLevel,
};
Expand Down
6 changes: 6 additions & 0 deletions examples/messages/provider/message-provider.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ describe('Message provider tests', () => {
{
matchingBranch: true,
},
{
mainBranch: true,
},
{
deployedOrReleased: true,
},
],
});

Expand Down
6 changes: 6 additions & 0 deletions examples/serverless/provider/message-provider.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ describe('Message provider tests', () => {
{
matchingBranch: true,
},
{
mainBranch: true,
},
{
deployedOrReleased: true,
},
],
});

Expand Down
6 changes: 6 additions & 0 deletions examples/v3/e2e/test/provider.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ describe('Pact Verification', () => {
{
matchingBranch: true,
},
{
mainBranch: true,
},
{
deployedOrReleased: true,
},
],
enablePending: true,

Expand Down

0 comments on commit 9bb0d10

Please sign in to comment.