Fast and powerful CSV (delimited text) parser that gracefully handles large files and malformed input
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.
 
 
 

22 lines
589 B

<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>