Robin Munn

Results 288 comments of Robin Munn

For clarity, I wasn't saying that the `protect()` function I outlined above would go into SvelteKit, I was showing a way to implement it yourself once the changes from #5748...

In addition to the [OPTIONS](https://httpwg.org/specs/rfc7231.html#OPTIONS) method, HTTP also defines [CONNECT](https://httpwg.org/specs/rfc7231.html#CONNECT) and [TRACE](https://httpwg.org/specs/rfc7231.html#TRACE). TRACE means "please send my request back to me", and if it's going to be handled at all,...

As the one who made that request to mock `fetch`, I thought I'd give an update on what I've found so far: 1. When testing components with `svelte-jester` (via https://github.com/rossyman/svelte-add-jest),...

@patrickleet wrote: > Here's an image of a coverage report showing lines of the load function being hit: What's the setup you're using for those tests? I've looked at https://github.com/CloudNativeEntrepreneur/sveltekit-eventsourced-funnel,...

@ITenthusiasm - Now that #5778 (which implements #5748) is merged, and `+server.js` endpoint handler functions get access to a `Request` object, does this satisfy your needs? Or should this issue...

According to https://github.com/sveltejs/kit/issues/5960#issuecomment-1217964620 and https://github.com/sveltejs/kit/issues/5960#issuecomment-1218494704 it seems likely that Svelte-Kit will end up using https://github.com/rich-harris/devalue for sending data from the server to the client (e.g., in `+page.server.ts` load functions.

I've had some experience with Playwright. The one drawback to Playwright is that it'll be significantly slower than the Jasmine tests we have already. That's because Playwright loads a fresh...

We did something along those lines in our project, where we tried to re-use a browser tab between tests. Playwright doesn't make it easy. but you can do it. You...

I have a mostly-completed work-in-progress on https://github.com/Jermolene/TiddlyWiki5/issues/6551 that stalled because I wasn't confident in the wording of the documentation I'd written. But the code is all there, and I believe...

https://github.com/Jermolene/TiddlyWiki5/pull/6771, adding the `insertafter` operator, is now ready to be reviewed for inclusion in the 5.2.3 release.