You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// test.test.tsimport{test,expect}from"bun:test";import{Elysia}from"elysia";test("Spaces in path",async()=>{constPATH="/y a y";constapp=newElysia().get(PATH,"yay");constresponse=awaitapp.handle(newRequest(`http://localhost${PATH}`));expect(response.status).toBe(200);});
What version of Elysia is running?
1.1.26
What platform is your computer?
WSL Ubuntu
What steps can reproduce the bug?
What is the expected behavior?
test pass
What do you see instead?
test fails:
Additional information
relates to elysiajs/elysia-static#35
Have you try removing the
node_modules
andbun.lockb
and try again yet?yes
The text was updated successfully, but these errors were encountered: