Framework Mode - Contract testing basics
Folder Structure
contract-testing-project/ ├── contracts/ # Contract definitions (e.g., JSON schemas, Pact files) │ ├── consumer-provider.json │ └── ... ├── tests/ # Contract test implementations │ ├── consumer/ │ │ └── consumerContractTest.js │ └── provider/ │ └── providerContractTest.js ├── utils/ # Helper functions for contract tests │ └── contractUtils.js ├── config/ # Environment and test configuration │ └── config.js ├── reports/ # Test reports and logs │ └── contractTestReport.html ├── package.json # Project dependencies and scripts └── README.md # Project overview and instructions