mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
d2dfb9ac4f
* Move and rename generic parts of ve.ui to OO.ui * We now have a UI test suite because ve.Element (outside ve.ui) is now part of oojs-ui, so it needs a test suite. * Added to the MW test run (just like we do for unicodejs). * Updated csslint config (also added ve-mw and syntaxhighlight which were missing). oojs-ui still depends on the TriggerRegistry in VE, this is addressed in a follow-up commit. Change-Id: Iec147155c1ddf20b73a4d15d87b8742207032312
26 lines
670 B
HTML
26 lines
670 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>oojs-ui Test Suite</title>
|
|
<!-- Test framework -->
|
|
<link rel="stylesheet" href="../../qunit/qunit.css">
|
|
<script src="../../qunit/qunit.js"></script>
|
|
<script>
|
|
QUnit.config.requireExpects = true;
|
|
</script>
|
|
<!-- Dependencies -->
|
|
<script src="../../jquery/jquery.js"></script>
|
|
<script src="../../oojs/oojs.js"></script>
|
|
<!-- Source code -->
|
|
<script src="../OO.ui.js"></script>
|
|
<script src="../OO.ui.Element.js"></script>
|
|
<!-- Test suites -->
|
|
<script src="./OO.ui.Element.test.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
</body>
|
|
</html>
|