Skip to content

Commit

Permalink
Re-enable all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Aug 2, 2021
1 parent 595e3dc commit 06d2da2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function (test) {
assert.equal(await res.text(), '<foo />');
});

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');
Expand Down

0 comments on commit 06d2da2

Please sign in to comment.