UNPKG

react-google-maps-sep

Version:
36 lines (31 loc) 672 B
import { default as expect, } from "expect"; import { GoogleMap, Circle, DirectionsRenderer, DrawingManager, InfoWindow, Marker, OverlayView, Polygon, Polyline, Rectangle, SearchBox, } from "../index"; describe("index", () => { it("should be exported", () => { expect(GoogleMap).toExist(); expect(Circle).toExist(); expect(DirectionsRenderer).toExist(); expect(DrawingManager).toExist(); expect(InfoWindow).toExist(); expect(Marker).toExist(); expect(OverlayView).toExist(); expect(Polygon).toExist(); expect(Polyline).toExist(); expect(Rectangle).toExist(); expect(SearchBox).toExist(); }); });