From e0ad0626583c7aec2f6716dfc6fb825e5476ad48 Mon Sep 17 00:00:00 2001 From: jsy1218 <91580504+jsy1218@users.noreply.github.com> Date: Wed, 12 Feb 2025 10:29:20 -0800 Subject: [PATCH] add e2e-test request header --- test/mocha/e2e/quote.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/mocha/e2e/quote.test.ts b/test/mocha/e2e/quote.test.ts index c2766c00f2..4fcc069461 100644 --- a/test/mocha/e2e/quote.test.ts +++ b/test/mocha/e2e/quote.test.ts @@ -1496,7 +1496,10 @@ describe('quote', function () { const queryParams = qs.stringify(quoteReq) const response: AxiosResponse = await axios.get(`${API}?${queryParams}`, { - headers: HEADERS_2_0, + headers: { + ...HEADERS_2_0, + 'x-request-source': 'e2e-test', + }, }) const { data: { quoteDecimals, quoteGasAdjustedDecimals, methodParameters, routeString },