mirror of
https://github.com/proj4js/proj4js.git
synced 2025-12-08 21:25:55 +00:00
29 lines
827 B
HTML
29 lines
827 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mocha Tests</title>
|
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
|
|
</head>
|
|
<body><div id="mocha"></div>
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
|
<script src="../node_modules/chai/chai.js" type="module"></script>
|
|
<script src="testData.js"></script>
|
|
<script src="../dist/proj4.js"></script>
|
|
<script src="../node_modules/geotiff/dist-browser/geotiff.js"></script>
|
|
<script src="test.js"></script>
|
|
<script type="module">
|
|
import * as chai from '../node_modules/chai/chai.js';
|
|
|
|
mocha.setup({
|
|
reporter: "JSON",
|
|
ui: 'bdd',
|
|
globals: [],
|
|
timeout: 300000,
|
|
checkLeaks: false
|
|
});
|
|
startTests(chai,proj4,GeoTIFF.fromArrayBuffer,testPoints);
|
|
mocha.run();
|
|
</script>
|
|
</body>
|
|
</html> |