diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e8e9a2022478..fcb978836c3f 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,9 +1,3 @@ -# IMPORTANT - -There is current a bug which results in our tests not being run: https://github.com/sveltejs/kit/issues/2069 - -As a result, we are unlikely to merge any PRs until that issue is fixed. Help would be appreciated in fixing that issue. - ### Before submitting the PR, please make sure you do the following - [ ] It's really useful if your PR references an issue where it is discussed ahead of time. In many cases, features are absent for a reason. For large changes, please create an RFC: https://github.com/sveltejs/rfcs - [ ] This message body should clearly illustrate what problems it solves. diff --git a/packages/kit/test/apps/basics/src/routes/endpoint-output/_tests.js b/packages/kit/test/apps/basics/src/routes/endpoint-output/_tests.js index 710f6a985e40..88179d0332a8 100644 --- a/packages/kit/test/apps/basics/src/routes/endpoint-output/_tests.js +++ b/packages/kit/test/apps/basics/src/routes/endpoint-output/_tests.js @@ -50,7 +50,7 @@ export default function (test) { assert.equal(await res.text(), ''); }); - test.only('gets binary response with XML Content-Type', null, async ({ fetch }) => { + test('gets binary response with XML Content-Type', null, async ({ fetch }) => { const res = await fetch('/endpoint-output/xml-bytes'); assert.equal(res.headers.get('content-type'), 'application/xml');