Rohit Agrawal
Rohit Agrawal
I was able to get past this error by adding a **transformIgnorePatterns** in my jest.config.js **_jest.config.js_** ``` module.exports = { transform: { '^.+\\.svelte$': 'svelte-jester', '^.+\\.js$': 'babel-jest', }, transformIgnorePatterns: [ "node_modules/?!(svelte-routing)"...
Here's the way I got it working: 1. Create a mock of the node `stripe`library ```ts // __mocks__/stripe.mock.ts import Stripe from 'stripe'; import * as faker from 'faker'; export const...
I was finally able to create a working implementation of zoom in and pan. I encapsulated all my nodes (which are simply `div`s) by a large container `div` and mapped...
Facing this issue as well, the performance drop is pretty significant with as few as 25 nodes. I'm using a gridRatio of 9, any higher than that, and the paths...
Did you enter valid Twitter API credentials into the server config file? Also, Please send the error message in the server logs
@murtazaali1999 Could you attach the image again? I can't seem to view it. @zubairfazalkhan I haven't encountered this error before, even when working with a different OS (Mac or Windows)....
I haven't used the rete js library for the entire implementation. I used it mostly as an inspiration for how the functionality should be. So I don't think I would...
I'm facing this issue as well, did someone figure out a solution for this?
I'm also facing this issue, the `onError` does not get triggered for invalid source links on iOS devices
> ## feature > * draggable > * show it on focus > * save coordinate of it > * update those point position with pathfinder > * if user...