mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
29 lines
842 B
HTML
29 lines
842 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Kotlin Standard Library Test Suite</title>
|
|
|
|
<!-- paths are setup for local file run -->
|
|
<!-- run installMocha gradle task to fetch mocha -->
|
|
<link href="../build/node_modules/mocha/mocha.css" rel="stylesheet"/>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
|
|
<script src="../build/node_modules/mocha/mocha.js"></script>
|
|
|
|
<!--enables globals (describe, it)-->
|
|
<script>mocha.setup('bdd');</script>
|
|
|
|
<script src="../build/classes/kotlin.js"></script>
|
|
<script src="../../../kotlin.test/js/build/classes/main/kotlin-test.js"></script>
|
|
<script src="../build/classes/kotlin/test/kotlin-stdlib-js_test.js"></script>
|
|
<script src="../../../kotlin.test/js/build/classes/kotlin/test/kotlin-test-js_test.js"></script>
|
|
|
|
<script>
|
|
mocha.checkLeaks();
|
|
mocha.run();
|
|
</script>
|
|
</body>
|
|
</html> |