UNPKG

ol3-google-maps

Version:

OpenLayers 3 Google Maps integration library

37 lines (31 loc) 1.28 kB
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Tests</title> <link rel="stylesheet" media="all" href="../node_modules/mocha/mocha.css"> <link rel="stylesheet" media="all" href="../css/ol3gm.css"> </head> <body> <div id="mocha"><p><a href=".">Index</a></p></div> <span>Please run the tests through the console, with npm test</span> <script type="text/javascript" src="../node_modules/mocha/mocha.js"></script> <script type="text/javascript" src="../node_modules/chai/chai.js"></script> <script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script> <script> if (typeof initMochaPhantomJS === 'function') { initMochaPhantomJS() } mocha.setup({ ui: 'bdd' }); var expect = chai.expect; </script> <script src="../node_modules/openlayers/dist/ol.js"></script> <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?v=3"></script> <script type="text/javascript" src="/@loader"></script> <script> mocha.run(); </script> </body> </html>