This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
node-task/node_modules/nodeunit/examples/browser/test.html
2014-09-18 15:35:58 -04:00

19 lines
375 B
HTML

<html>
<head>
<title>Example tests</title>
<script src="nodeunit.js"></script>
<script src="suite1.js"></script>
<script src="suite2.js"></script>
<script src="suite3.js"></script>
</head>
<body>
<script>
nodeunit.run({
'suite1': suite1,
'suite2': suite2,
'suite3': suite3
});
</script>
</body>
</html>