You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
589 B
23 lines
589 B
4 years ago
|
<html>
|
||
|
<head>
|
||
|
<title>Papa Parse Tests</title>
|
||
|
<meta charset="utf-8">
|
||
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="mocha"></div>
|
||
|
<script src="../node_modules/mocha/mocha.js"defer></script>
|
||
|
<script src="../node_modules/chai/chai.js" defer></script>
|
||
|
<script type="module">
|
||
|
import * as Papa from '../papaparse.mjs';
|
||
|
window.Papa = Papa;
|
||
|
mocha.setup('bdd');
|
||
|
mocha.checkLeaks();
|
||
|
</script>
|
||
|
<script src="test-cases.js" id="test-cases" defer></script>
|
||
|
<script type="module">
|
||
|
mocha.run();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|