Maximilian Grundke

Results 10 comments of Maximilian Grundke

Same Problem here. FT seems to ignore mouse events in Google Chrome (Version 33.0.1750.146 m) on Windows 8.1. However, if I connect a touch-enabled monitor, touch events are recognized in...

I have found a solution to this problem, which is not FT specific. It is based on a bug in Raphael (https://groups.google.com/forum/#!topic/raphaeljs/FOY0ftfygp8/discussion). The problem is, that Raphael uses touch events...

The `find` method can mutate the params as well if you use hooks, which was quite surprising when I tried something like this: ```js const params = { foo: 'bar',...

I am getting the same error after upgrading to `mongoose@^6.0.0`. On 5.x your test should work.

Another workaround I just discovered is manually mocking `create`, assuming you use jest: ```js jest.spyOn(Todo, "create").mockImplementationOnce(async () => _data); ``` Note that this will return a pojo instead of the...

We're seeing something very similar (https://github.com/vercel/next.js/issues/41952) albeit with the pre-v13 _error page. In our case, a routing error on the error page is not handled. Maybe there is a similar...

@ashish1497 how did you solve the problem in the end?

It seems that with v2.16.0 this issue is relevant again. Consider the following sample: ```ts import * as mockingoose from 'mockingoose'; mockingoose(MyModel).toReturn([], 'find'); ``` results in `Type 'typeof import("[...]/node_modules/mockingoose/types")' has...

There seems to be an issue in nextjs which is causing this behavior even without next-pwa: https://github.com/vercel/next.js/issues/41952 At least that's what I'm seeing in my project.

This can easily be done with [grunt-groc](https://github.com/jdcataldo/grunt-groc) and [grunt-contrib-watch](https://github.com/gruntjs/grunt-contrib-watch).