dotfiles/vscode/.vscode/extensions/randomfractalsinc.vscode-data-preview-2.3.0/node_modules/papaparse/tests/tests.html
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

28 lines
568 B
HTML

<html>
<head>
<title>Papa Parse Tests</title>
<meta charset="utf-8">
<script src="../node_modules/mocha/mocha.js"></script>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
<script src="../papaparse.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script>mocha.setup('bdd')</script>
<script src="test-cases.js"></script>
</head>
<body>
<div id="mocha"></div>
<script>
if (window.mochaPhantomJS) {
mochaPhantomJS.run();
} else {
mocha.checkLeaks();
mocha.run();
}
</script>
</body>
</html>