In router/routes_test.ts, the test named "GET /styles.css serves the stylesheet"
This test checks that the stylesheet loads correctly. The website feature itself works fine but the test opens a file and never closes it, so our test flags it as a "leak" and marks the whole test as failed, even though nothing is actually broken in the app.
Needs a cleanup fix so make test passes cleanly again.
In router/routes_test.ts, the test named "GET /styles.css serves the stylesheet"
This test checks that the stylesheet loads correctly. The website feature itself works fine but the test opens a file and never closes it, so our test flags it as a "leak" and marks the whole test as failed, even though nothing is actually broken in the app.
Needs a cleanup fix so
make testpasses cleanly again.