mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 06:17:10 +01:00
Fix mocha report fixture + test duration handling
This commit is contained in:
parent
9b675bd55f
commit
8dba8714d0
6 changed files with 20 additions and 87 deletions
|
|
@ -1,20 +1,20 @@
|
|||
{
|
||||
"stats": {
|
||||
"suites": 5,
|
||||
"tests": 7,
|
||||
"suites": 3,
|
||||
"tests": 6,
|
||||
"passes": 1,
|
||||
"pending": 1,
|
||||
"failures": 5,
|
||||
"start": "2021-02-23T14:20:41.144Z",
|
||||
"end": "2021-02-23T14:20:41.158Z",
|
||||
"duration": 14
|
||||
"failures": 4,
|
||||
"start": "2021-02-24T20:26:09.297Z",
|
||||
"end": "2021-02-24T20:26:09.309Z",
|
||||
"duration": 12
|
||||
},
|
||||
"tests": [
|
||||
{
|
||||
"title": "Timeout test",
|
||||
"fullTitle": "Timeout test",
|
||||
"file": "C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\mocha\\test\\second.test.js",
|
||||
"duration": 10,
|
||||
"duration": 8,
|
||||
"currentRetry": 0,
|
||||
"err": {
|
||||
"stack": "Error: Timeout of 1ms exceeded. For async tests and hooks, ensure \"done()\" is called; if returning a Promise, ensure it resolves. (C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\mocha\\test\\second.test.js)\n at listOnTimeout (internal/timers.js:554:17)\n at processTimers (internal/timers.js:497:7)",
|
||||
|
|
@ -78,23 +78,6 @@
|
|||
"stack": "Error: Some error\n at Context.<anonymous> (test\\main.test.js:22:11)\n at processImmediate (internal/timers.js:461:21)",
|
||||
"message": "Some error"
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "should return -1 when the value is not present",
|
||||
"fullTitle": "Array #indexOf() should return -1 when the value is not present",
|
||||
"file": "C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\mocha\\test\\test.js",
|
||||
"duration": 0,
|
||||
"currentRetry": 0,
|
||||
"err": {
|
||||
"stack": "AssertionError [ERR_ASSERTION]: 2 == -1\n at Context.<anonymous> (test\\test.js:5:14)\n at processImmediate (internal/timers.js:461:21)",
|
||||
"message": "2 == -1",
|
||||
"generatedMessage": true,
|
||||
"name": "AssertionError",
|
||||
"code": "ERR_ASSERTION",
|
||||
"actual": "2",
|
||||
"expected": "-1",
|
||||
"operator": "=="
|
||||
}
|
||||
}
|
||||
],
|
||||
"pending": [
|
||||
|
|
@ -111,7 +94,7 @@
|
|||
"title": "Timeout test",
|
||||
"fullTitle": "Timeout test",
|
||||
"file": "C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\mocha\\test\\second.test.js",
|
||||
"duration": 10,
|
||||
"duration": 8,
|
||||
"currentRetry": 0,
|
||||
"err": {
|
||||
"stack": "Error: Timeout of 1ms exceeded. For async tests and hooks, ensure \"done()\" is called; if returning a Promise, ensure it resolves. (C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\mocha\\test\\second.test.js)\n at listOnTimeout (internal/timers.js:554:17)\n at processTimers (internal/timers.js:497:7)",
|
||||
|
|
@ -159,23 +142,6 @@
|
|||
"stack": "Error: Some error\n at Context.<anonymous> (test\\main.test.js:22:11)\n at processImmediate (internal/timers.js:461:21)",
|
||||
"message": "Some error"
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "should return -1 when the value is not present",
|
||||
"fullTitle": "Array #indexOf() should return -1 when the value is not present",
|
||||
"file": "C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\mocha\\test\\test.js",
|
||||
"duration": 0,
|
||||
"currentRetry": 0,
|
||||
"err": {
|
||||
"stack": "AssertionError [ERR_ASSERTION]: 2 == -1\n at Context.<anonymous> (test\\test.js:5:14)\n at processImmediate (internal/timers.js:461:21)",
|
||||
"message": "2 == -1",
|
||||
"generatedMessage": true,
|
||||
"name": "AssertionError",
|
||||
"code": "ERR_ASSERTION",
|
||||
"actual": "2",
|
||||
"expected": "-1",
|
||||
"operator": "=="
|
||||
}
|
||||
}
|
||||
],
|
||||
"passes": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue