mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 22:22:54 +00:00
fd0f4ff5cf
Previously they were only run from the dedicated standalone test which meant they weren't being run from Jenkins. Change-Id: If22456f0031c68b0c1e7621b35b1e79c0664da15
40 lines
1.1 KiB
PHP
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>
|