Skip to content

Commit

Permalink
add e2e-test request header
Browse files Browse the repository at this point in the history
  • Loading branch information
jsy1218 committed Feb 12, 2025
1 parent a79dc1e commit e0ad062
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/mocha/e2e/quote.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,10 @@ describe('quote', function () {
const queryParams = qs.stringify(quoteReq)

const response: AxiosResponse<QuoteResponse> = await axios.get<QuoteResponse>(`${API}?${queryParams}`, {
headers: HEADERS_2_0,
headers: {
...HEADERS_2_0,
'x-request-source': 'e2e-test',
},
})
const {
data: { quoteDecimals, quoteGasAdjustedDecimals, methodParameters, routeString },
Expand Down

0 comments on commit e0ad062

Please sign in to comment.