Socket
Socket
Sign inDemoInstall

googlemaps-js-api-stub

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    googlemaps-js-api-stub

Google Maps Javascript API Stub


Version published
Weekly downloads
1.9K
decreased by-12.9%
Maintainers
1
Install size
7.79 kB
Created
Weekly downloads
 

Readme

Source

Google Maps Javascript API Stub

Google Maps Javascript API is exposed under the window.google namespace, and has an object structure that's fairly involved. This makes testing of components and other UI logic that depend on the Maps API a bit inconvenient, since you would inevitably have to stub out quite a few of the Maps API objects and method calls in your tests, even for fairly trivial usages. It usually ends up adding noise to your tests, and obscuring their intent.

This package stubs out the window.google namespace, and all documented objects and methods of the Maps API under this namespace. All of the stubs are noops and usually return an empty object, or an object with a sensible structure as appropriate. Importing this package into your tests will let you focus on testing your component and UI logic without having to worry about details of the Maps API. In addition, you can set up explicit expectations on specific Google Maps API calls when you are testing interactions with the Maps API.

Initial versions of this package stub out significant portions of the documented Maps API. Eventually this package will be versioned in lockstep with the Maps API versions (i.e. importing version X of this package will stub out version X of the Maps API).

Usage

  • Install the package

    npm install --save-dev googlemaps-js-api-stub

    OR

    yarn add --dev googlemaps-js-api-stub

  • Import googlemaps-js-api-stub into your test

    import 'googlemaps-js-api-stub'

    OR

    require 'googlemaps-js-api-stub'

  • Optionally, set expectations on specific API calls as required

sinon.stub(window.google.Map, 'setZoom');
expect(window.google.Map.setZoom).to.have.been.called

Keywords

FAQs

Last updated on 18 Mar 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc