mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
25 lines
688 B
HTML
25 lines
688 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mocha Tests</title>
|
|
<link href="node_modules/mocha/mocha.css" rel="stylesheet"/>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
|
|
<script src="scripts/browser-polyfill.min.js"></script>
|
|
<script src="scripts/popup.js"></script>
|
|
|
|
<div>Hello! Lets play at <span id="game">ping</span></div>
|
|
|
|
<!-- TESTS -->
|
|
<script src="node_modules/expect.js/index.js"></script>
|
|
<script src="node_modules/mocha/mocha.js"></script>
|
|
<script src="tests/mocha-setup.js"></script>
|
|
<script src="tests/lib/test.array.js"></script>
|
|
<script src="tests/lib/background-messaging.test.js"></script>
|
|
<script src="tests/mocha-run.js"></script>
|
|
<!-- /TESTS -->
|
|
|
|
</body>
|
|
</html> |