Hiii,我已经为在终端中执行良好的nodejs编写了mocha测试,我需要运行测试并在浏览器中显示结果,我按照Mocha documentaion中的建议进行了测试。我创建了一个测试运行器文件,包括模板结构并包含我的测试文件。我在nodejs中正确配置了路由,现在当我在Postman中调用url时。我只是得到了与响应相同的html文件,任何人都可以帮助我在浏览器中运行测试
这是我的测试运行器文件:
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
</head>
<body>
<div id="mocha"></div>
<script src="https://cdn.rawgit.com/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"> </script>
<script>mocha.setup('bdd')</script>
<script src="../test/notification_nodetest.js"></script>
<script src="../test/performance_check.js"></script>
<script>
mocha.checkLeaks();
mocha.globals(['jQuery']);
mocha.run();
</script>
</body>
</html>
这是我配置网址的地方:
app.get('/notifications/test', notificator.test_results);
test_results: function(req, res) {
app.get('/index.htm', function (req, res) {
var path = require('path');
res.sendFile( path.resolve("test/index.html") );
})