Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
854 views
in Technique[技术] by (71.8m points)

reactjs - Testing react-map-gl with jest and react testing library timeout

I am currently trying to test a Component wrapped with third party library which is react-map-gl marker.

It keep throwing error like project undefined. so I looked into the react-map-gl code.

let [x, y] = this._context.viewport.project([longitude, latitude]);

Then, I went to see how react-map-gl test its own stuff. Then, I tried to miminc how they do. But it just timeout no matter how much time I put. Am I missing something?

import {_MapContext as MapContext} from 'react-map-gl'
import WebMercatorViewport from 'viewport-mercator-project'

const mockStaticContext = {
  viewport: new WebMercatorViewport({
    width: 800,
    height: 600,
    longitude: -122.58,
    latitude: 37.74,
    zoom: 14
  })
};
const mockInteractiveContext = Object.assign({}, mockStaticContext, {
  eventManager: {
    on: sinon.spy(),
    off: sinon.spy(),
    watch: sinon.spy()
  }
})
describe('<ListingMarker />', () => {

  it('should not explode', async (t) => {

    render(
      <MapContext.Provider value={mockInteractiveContext}>
        <AppMarker cluster={marker} />
      </MapContext.Provider>
    )
  }, 30000)


})

I tried to follow their way of testing. https://github.com/visgl/react-map-gl/blob/master/test/src/components/marker.spec.js

question from:https://stackoverflow.com/questions/66051265/testing-react-map-gl-with-jest-and-react-testing-library-timeout

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

Just Browsing Browsing

[2] html - How to create even cell spacing within a

1.4m articles

1.4m replys

5 comments

56.9k users

...