contract-testing-patterns

Installation
SKILL.md

Contract Testing Patterns

Consumer-Driven Contract Testing with Pact

Consumer Test (JavaScript)

const { PactV3, MatchersV3 } = require('@pact-foundation/pact');
const { like, eachLike, string, integer } = MatchersV3;

const provider = new PactV3({
  consumer: 'OrderService',
  provider: 'UserService',
  logLevel: 'warn',
});
Installs
10
GitHub Stars
507
First Seen
Mar 23, 2026
contract-testing-patterns — vibeeval/vibecosystem