Context
src/server/index.js uses url.parse(req.url, true) which triggers [DEP0169] DeprecationWarning in Node.js. This shows up in every test run.
Proposal
Replace url.parse() with the WHATWG new URL() API. Extract pathname and query using URL and URLSearchParams.
References