We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6edacd3 commit 53c0ccaCopy full SHA for 53c0cca
test/helper/test-servers.ts
@@ -41,10 +41,10 @@ export function startTestServers() {
41
res.send('Hello World!');
42
});
43
app.get('/teapot', (_req, res) => {
44
- res.status(418).send("I'm a teapot");
+ res.status(418).send('I\'m a teapot');
45
46
app.get('/fail', (req, res) => {
47
- res.status(500).send("Something went wrong");
+ res.status(500).send('Something went wrong');
48
49
app.use('/files', express.static(staticFilesPath));
50
app.get('/base64/:filename', async (req: any, res: any) => {
0 commit comments