Skip to content

Commit e8b391b

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

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
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.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ You can run the tests for only a single package by first moving to that director
6060

6161
You must rebuild each time before running the tests if you've made code changes.
6262

63-
To run a single integration test, provide the `FILTER` env var with the test name. E.g. `FILTER="includes paths" pnpm test:integration`. You're also supposed to be a open up the file and change `test` to `test.only`, but this doesn't work as well. Help would be appreciated in fixing that.
63+
To run a single integration test, provide the `FILTER` env var with the test name. E.g. `FILTER="includes paths" pnpm test:integration`. You can also open up the file and change `test` to `test.only`.
6464

6565
You can run the test server with `cd packages/kit/test/apps/basics; pnpm run dev` to hit it with your browser.
6666

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)