Add spell check (#3544)

I felt like adding a spell checker, but it's okay if you find it
superfluous. At least then we could fix the found spell issues.

What is still missing is an automatic integration so that the spell
checker does not have to be called manually. Would it perhaps make sense
to always do it before a release?
This commit is contained in:
Kristjan ESPERANTO
2024-09-18 07:37:09 +02:00
committed by GitHub
parent ea3a323581
commit d9f9f41e98
17 changed files with 1338 additions and 46 deletions

View File

@@ -45,7 +45,7 @@ describe("server_functions tests", () => {
expect(fetchMock.mock.calls[0][0]).toBe(urlToCall);
});
it("Forewards Content-Type if json", async () => {
it("Forwards Content-Type if json", async () => {
fetchResponseHeadersGet.mockImplementation(() => "json");
await cors(request, corsResponse);
@@ -58,7 +58,7 @@ describe("server_functions tests", () => {
expect(corsResponse.set.mock.calls[0][1]).toBe("json");
});
it("Forewards Content-Type if xml", async () => {
it("Forwards Content-Type if xml", async () => {
fetchResponseHeadersGet.mockImplementation(() => "xml");
await cors(request, corsResponse);