mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 15:23:29 -05:00
23 lines
611 B
HTML
23 lines
611 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Squire rich-text editor tests</title>
|
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
|
|
</head>
|
|
<body>
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
|
<script src="../node_modules/unexpected/unexpected.js"></script>
|
|
<script src="../build/squire-raw.js"></script>
|
|
<iframe id="testFrame" style="visibility: hidden;"></iframe>
|
|
<div id="mocha"></div>
|
|
<script>
|
|
mocha.setup('bdd');
|
|
var expect = weknowhow.expect;
|
|
</script>
|
|
<script src="squire.spec.js"></script>
|
|
<script>
|
|
mocha.run();
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|