Skip to content

Commit 06d2da2

Browse files
committed
Re-enable all tests
1 parent 595e3dc commit 06d2da2

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# IMPORTANT
2-
3-
There is current a bug which results in our tests not being run: https://github.com/sveltejs/kit/issues/2069
4-
5-
As a result, we are unlikely to merge any PRs until that issue is fixed. Help would be appreciated in fixing that issue.
6-
71
### Before submitting the PR, please make sure you do the following
82
- [ ] 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
93
- [ ] This message body should clearly illustrate what problems it solves.

packages/kit/test/apps/basics/src/routes/endpoint-output/_tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default function (test) {
5050
assert.equal(await res.text(), '<foo />');
5151
});
5252

53-
test.only('gets binary response with XML Content-Type', null, async ({ fetch }) => {
53+
test('gets binary response with XML Content-Type', null, async ({ fetch }) => {
5454
const res = await fetch('/endpoint-output/xml-bytes');
5555

5656
assert.equal(res.headers.get('content-type'), 'application/xml');

0 commit comments

Comments
 (0)