mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-07 06:37:16 +00:00
26 lines
534 B
HTML
26 lines
534 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>rsvp.js Tests</title>
|
|
<link rel="stylesheet" href="mocha.css" />
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="json3.js"></script>
|
|
<script src="mocha.js"></script>
|
|
<script src="/testem.js"></script>
|
|
<script>
|
|
mocha.setup({
|
|
ui: 'bdd',
|
|
timeout: 200,
|
|
ignoreLeaks: true
|
|
});
|
|
</script>
|
|
<script src="browserify.js"></script>
|
|
<script>
|
|
if (window.mochaPhantomJS) { mochaPhantomJS.run(); }
|
|
else { mocha.run(); }
|
|
</script>
|
|
</body>
|
|
</html>
|