From c3b3314db75c165b9d4557a9b1a8a34c2b5001ac Mon Sep 17 00:00:00 2001 From: mefellows Date: Fri, 26 Apr 2024 13:48:07 +1000 Subject: [PATCH] chore: fix failing v4 matchers test --- examples/v4/matchers/consumer.spec.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/v4/matchers/consumer.spec.ts b/examples/v4/matchers/consumer.spec.ts index 03c9369c9..3336dbd75 100644 --- a/examples/v4/matchers/consumer.spec.ts +++ b/examples/v4/matchers/consumer.spec.ts @@ -47,7 +47,10 @@ describe('V4 Matchers', () => { .request({ baseURL: mockserver.url, method: 'GET', - url: '/eachKeyMatches', + url: '/eachKeyMatches?from=today', + headers: { + Accept: 'application/json', + }, }) .then((res) => { expect(res.data.key1).to.equal("a string we don't care about");