Rest API - API Testing and Monitoring
Given this Pact interaction, what will be the expected response status code?
provider.addInteraction({
state: 'User exists',
uponReceiving: 'a GET request for user',
withRequest: { method: 'GET', path: '/user/123' },
willRespondWith: { status: 200, body: { id: 123, name: 'Alice' } }
});