Luis Grases

Results 12 comments of Luis Grases

I do have it running in another terminal. When I run the tests it say `Connected to XDebug server` but will never break on `xdebug_break();` ![image](https://user-images.githubusercontent.com/6208922/107425938-3f7ace80-6ae5-11eb-9232-ba46593597fe.png)

Nvm found the problem. If I run the test on a separate process, the breakpoint won't work. ``` /** * @runInSeparateProcess * @preserveGlobalState disabled */ ``` I removed those test...

I can confirm this issue. When zooming out to 50% the dragging work as expected.

I fixed it by doing ```rm -rf /Users/{user}/Library/Developer/Xcode/DerivedData/{project_id}/Build/Products/Debug-iphonesimulator``` and building again

@bostrom this is my solution (you will need memoizee): ``` import memoize from 'memoizee' const createFormValidation = ({ id, message, validationFn, async = false, }: createFormValidationArgs) => { const memoized...

just created a simple pull request: #32

My pull request still doesn't fix all issues so it is better to just use 1.5.1

this might help: ``` const printInTerminal = (content) => { terminalRef.current.state.instances[0].instance.updater.enqueueSetState( terminalRef.current.state.instances[0].instance, { summary: [ ...terminalRef.current.state.instances[0].instance.state.summary, ...(Array.isArray(content) ? content.map((c) => [c]) : [content]), ], } ); }; ``` To print...

It also hangs for me for chained eloquent queries: ``` Model.where(..._) ->join(...) ->join(...) ->join(...) ->join(...) ->get(); ``` Hangs for me. If I remove one of the joins it works again....