Aaron McAdam

Results 39 comments of Aaron McAdam

@jintoppy I've been looking at https://github.com/cyclejs-community/awesome-cyclejs#example-applications. Did you find any complex example apps? I'm looking for one that uses [`HTTP` `progress`](https://cycle.js.org/api/http.html#api-makehttpdriver).

This seems to be an issue with msw 0.4x, as we don't see the problem with 0.3x. @yannbf I've recreated this problem in a branch of the mealdrop app here:...

Here's a screencap of the issue: ![CleanShot 2022-07-21 at 16 03 41](https://user-images.githubusercontent.com/37928/180250217-8ff94483-19a1-4dec-9059-f859eabe47d9.gif)

I think if we had some way of resetting handlers like we can in unit tests (with `server.resetHandlers()`), that might help us make sure the story uses the correct handler.

> Currently, I've resorted to checking the test environment in .storybook/preview.js and rewriting the mswDecorator to ensure things are cleaned up. How are you doing that?

One code that I'd probably like is 422: Unprocessable Entity. It's what Rails returns when a payload (POST or PATCH) fails validation. (https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/422)

It doesn't look like pwa-node/vscode is DAP compliant. If we look in the `DAPInstall.nvim` plugin, we can see that the supported debuggers are `vscode-chrome-debug` and `node-debug2`: https://github.com/ravenxrz/DAPInstall.nvim#list-of-debuggers

@michaeldelgado1 I've got something working with the following change to `init.lua`: ``` local function get_strategy_config(strategy, command) local config = { dap = function() return { name = "Debug Jest Tests",...

I don't think this is perfect yet, it looks like passing tests don't get reported, but it's a start! ![CleanShot 2022-08-16 at 00 18 14@2x](https://user-images.githubusercontent.com/37928/184738116-d20aa366-78b8-44a0-8bc8-2c3674f160ed.png)

I found these helpful when trying to piece together a solution: * https://alpha2phi.medium.com/neovim-dap-enhanced-ebc730ff498b * https://github.com/David-Kunz/jester/blob/main/lua/jester/init.lua