Leaflet/spec/index.html

105 lines
3.4 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2010-09-02 21:14:25 +08:00
<html>
<head>
<meta charset="utf-8">
<title>Leaflet Spec Runner</title>
<link rel="stylesheet" type="text/css" href="../node_modules/mocha/mocha.css">
<link rel="stylesheet" type="text/css" href="../dist/leaflet.css">
2013-03-02 05:49:20 +08:00
</head>
<body>
<div id="mocha"></div>
<script src="expect.js"></script>
2017-02-04 23:17:51 +08:00
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/happen/happen.js"></script>
<script src="../node_modules/prosthetic-hand/dist/prosthetic-hand.js"></script>
<script src="sinon.js"></script>
2012-02-26 00:57:28 +08:00
<!-- source files -->
<script>
// Trick Leaflet into believing we have a touchscreen (for Chrome)
if (window.Touch) { window.ontouchstart = function(){} };
</script>
2017-02-04 23:17:51 +08:00
<!-- <script src="../build/deps.js"></script> -->
2012-02-26 00:57:28 +08:00
2017-02-04 23:17:51 +08:00
<script src="../debug/leaflet-include.js"></script>
2012-02-26 00:57:28 +08:00
<script>
mocha.setup({
ui: 'bdd',
ignoreLeaks: true
});
</script>
2010-09-15 21:46:27 +08:00
<!-- spec files -->
2012-02-26 00:57:28 +08:00
2017-02-04 23:17:51 +08:00
<script src="suites/SpecHelper.js"></script>
2012-02-26 00:57:28 +08:00
2012-10-13 03:13:55 +08:00
<!-- /control -->
2017-02-04 23:17:51 +08:00
<script src="suites/control/ControlSpec.js"></script>
<script src="suites/control/Control.LayersSpec.js"></script>
<script src="suites/control/Control.ScaleSpec.js"></script>
<script src="suites/control/Control.AttributionSpec.js"></script>
2012-10-13 03:13:55 +08:00
2012-06-30 18:13:02 +08:00
<!-- /core -->
2017-02-04 23:17:51 +08:00
<script src="suites/core/UtilSpec.js"></script>
<script src="suites/core/ClassSpec.js"></script>
<script src="suites/core/EventsSpec.js"></script>
2010-09-02 21:14:25 +08:00
2012-06-30 18:13:02 +08:00
<!-- /geometry -->
2017-02-04 23:17:51 +08:00
<script src="suites/geometry/PointSpec.js"></script>
<script src="suites/geometry/BoundsSpec.js"></script>
<script src="suites/geometry/TransformationSpec.js"></script>
<script src="suites/geometry/LineUtilSpec.js"></script>
<script src="suites/geometry/PolyUtilSpec.js"></script>
2010-09-07 00:06:38 +08:00
2012-06-30 18:13:02 +08:00
<!-- /geo -->
2017-02-04 23:17:51 +08:00
<script src="suites/geo/LatLngSpec.js"></script>
<script src="suites/geo/LatLngBoundsSpec.js"></script>
<script src="suites/geo/ProjectionSpec.js"></script>
2012-06-30 18:13:02 +08:00
<!-- /dom -->
2017-02-04 23:17:51 +08:00
<script src="suites/dom/DomEventSpec.js"></script>
<script src="suites/dom/DomUtilSpec.js"></script>
2012-06-30 18:13:02 +08:00
<!-- /layer -->
2017-02-04 23:17:51 +08:00
<script src="suites/layer/FeatureGroupSpec.js"></script>
<script src="suites/layer/GeoJSONSpec.js"></script>
<script src="suites/layer/ImageOverlaySpec.js"></script>
<script src="suites/layer/LayerGroupSpec.js"></script>
<script src="suites/layer/PopupSpec.js"></script>
<script src="suites/layer/TooltipSpec.js"></script>
<!-- /layer/tile -->
2017-02-04 23:17:51 +08:00
<script src="suites/layer/tile/GridLayerSpec.js"></script>
<script src="suites/layer/tile/TileLayerSpec.js"></script>
<!-- /layer/marker/ -->
2017-02-04 23:17:51 +08:00
<script src="suites/layer/marker/MarkerSpec.js"></script>
<script src="suites/layer/marker/Icon.DefaultSpec.js"></script>
<!-- /layer/vector/ -->
2017-02-04 23:17:51 +08:00
<script src="suites/layer/vector/CircleSpec.js"></script>
<script src="suites/layer/vector/CircleMarkerSpec.js"></script>
<script src="suites/layer/vector/PathSpec.js"></script>
<script src="suites/layer/vector/PolygonSpec.js"></script>
<script src="suites/layer/vector/PolylineSpec.js"></script>
<script src="suites/layer/vector/PolylineGeometrySpec.js"></script>
<script src="suites/layer/vector/CanvasSpec.js"></script>
2012-02-26 00:57:28 +08:00
2012-06-30 18:13:02 +08:00
<!-- /map -->
2017-02-04 23:17:51 +08:00
<script src="suites/map/MapSpec.js"></script>
2012-06-30 18:13:02 +08:00
<!-- /map/handler -->
2017-02-04 23:17:51 +08:00
<script src="suites/map/handler/Map.DragSpec.js"></script>
<script src="suites/map/handler/Map.TouchZoomSpec.js"></script>
<script src="suites/map/handler/Map.KeyboardSpec.js"></script>
<!-- /geo/crs -->
2017-02-04 23:17:51 +08:00
<script src="suites/geo/CRSSpec.js"></script>
<script>
(window.mochaPhantomJS || window.mocha).run();
</script>
2010-09-02 21:14:25 +08:00
</body>
2012-10-13 03:13:55 +08:00
</html>