Skip to content

Commit

Permalink
remove non-minified references to 3dtiles component
Browse files Browse the repository at this point in the history
  • Loading branch information
kfarr committed Jun 21, 2024
1 parent c4eebd6 commit f240456
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 324 deletions.
147 changes: 0 additions & 147 deletions examples/cesium-3dtiles/index.html

This file was deleted.

156 changes: 0 additions & 156 deletions examples/google-tiles/index.html

This file was deleted.

45 changes: 24 additions & 21 deletions test/browserTests/street-geo-test.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/9.0.2/mocha.min.css">
</head>
<body>
<div id="mocha"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/9.0.2/mocha.min.js"></script>
<script src="https://www.chaijs.com/chai.js"></script>
<script src="https://aframe.io/releases/1.5.0/aframe.min.js"></script>
<script src="/src/lib/aframe-loader-3dtiles-component.js"></script>
<script src="/src/lib/aframe-mapbox-component.min.js"></script>
<script src="/src/components/street-geo.js"></script>

<script type="module">
window.expect = chai.expect;
mocha.setup('bdd');
mocha.run();
</script>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/9.0.2/mocha.min.css">
</head>

<script type="module" src="/test/browserTests/street-geo-test-bdd.mjs"></script>
<body>
<div id="mocha"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/9.0.2/mocha.min.js"></script>
<script src="https://www.chaijs.com/chai.js"></script>
<script src="https://aframe.io/releases/1.5.0/aframe.min.js"></script>
<script src="/src/lib/aframe-loader-3dtiles-component.min.js"></script>
<script src="/src/lib/aframe-mapbox-component.min.js"></script>
<script src="/src/components/street-geo.js"></script>

</body>
</html>
<script type="module">
window.expect = chai.expect;
mocha.setup('bdd');
mocha.run();
</script>

<script type="module" src="/test/browserTests/street-geo-test-bdd.mjs"></script>

</body>

</html>

0 comments on commit f240456

Please sign in to comment.