mirror of https://github.com/emn178/js-md5.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
596 B
HTML
27 lines
596 B
HTML
![]()
8 years ago
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>MD5</title>
|
||
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css">
|
||
|
<script src="../node_modules/mocha/mocha.js"></script>
|
||
|
<script src="../node_modules/expect.js/index.js"></script>
|
||
|
<script src="../src/md5.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="mocha"></div>
|
||
|
<script>
|
||
|
WORKER = 'worker.js';
|
||
|
SOURCE = '../src/md5.js';
|
||
|
mocha.setup('bdd');
|
||
|
</script>
|
||
|
<script src="worker-test.js"></script>
|
||
|
<script>
|
||
|
mocha.checkLeaks();
|
||
|
mocha.run();
|
||
|
</script>
|
||
|
<script>
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|