我尝试使用grunt-mocha-test将所有测试结果保存在JSON文件中... 我只是不知道如何摆脱console.log输出,我只需要JSON 这是我的conf:
2 ^[[7m Application loaded using the "test" environment configuration
3 ^[[0m
4 connecting to mongodb...
5 name: localhost
6 app started on port 3000
7 successful connection to redis server
8 {
9 "stats": {
10 "suites": 1,
11 "tests": 5,
12 "passes": 5,
13 "pending": 0,
14 "failures": 0,
15 "start": "2015-12-23T00:01:43.968Z",
这是一个输出示例:
META-INF\maven\group-id/artifact\pom.properties
我错过了什么?有替代方法吗?
答案 0 :(得分:0)
请尝试将其作为解决方法:
grunt.log.header = function () {};
我找到了可能有帮助信息的this链接。还有一些软件包可以帮助解决这个问题,特别是grunt-log-headers。如果有效,请告诉我!