mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
27 lines
674 B
HTML
27 lines
674 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Tests for background</title>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css"/>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
|
<script src="../node_modules/chai/chai.js"></script>
|
|
<script src="../node_modules/expect.js/index.js"></script>
|
|
<script src="../node_modules/chrome-mock/browser.js"></script>
|
|
<script>
|
|
mocha.ui('bdd');
|
|
mocha.reporter('html');
|
|
expect = chai.expect;
|
|
</script>
|
|
|
|
<script src="../addon/background.js"></script>
|
|
<script src="lib/background.test.js"></script>
|
|
<script>
|
|
mocha.run();
|
|
</script>
|
|
</body>
|
|
</html>
|