mediawiki-extensions-Visual.../modules/unicodejs/index.php
Timo Tijhof fd0f4ff5cf Run UnicodeJS tests from Special:JavaScriptTest/qunit
Previously they were only run from the dedicated standalone test
which meant they weren't being run from Jenkins.

Change-Id: If22456f0031c68b0c1e7621b35b1e79c0664da15
2013-07-17 00:45:11 +02:00

40 lines
1.1 KiB
PHP

<!--
/**
* UnicodeJS tests
*
* @file
* @copyright 2013 UnicodeJS team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>UnicodeJS Tests</title>
<!-- Test framework -->
<link rel="stylesheet" href="../qunit/qunit.css">
<script src="../qunit/qunit.js"></script>
<!-- Code Dependencies -->
<script src="../jquery/jquery.js"></script>
<!-- Code -->
<script src="unicodejs.js"></script>
<script src="unicodejs.textstring.js"></script>
<script src="unicodejs.graphemebreakproperties.js"></script>
<script src="unicodejs.graphemebreak.js"></script>
<script src="unicodejs.wordbreakproperties.js"></script>
<script src="unicodejs.wordbreak.js"></script>
<!-- Code Tests (also update VisualEditorHooks::onResourceLoaderTestModules) -->
<script src="test/unicodejs.test.js"></script>
<script src="test/unicodejs.graphemebreak.test.js"></script>
<script src="test/unicodejs.wordbreak.test.js"></script>
</head>
<body>
<div id="qunit"></div>
</body>
</html>