(groupIndentation)
| 13 | let c, stdout, stderr; |
| 14 | |
| 15 | function setup(groupIndentation) { |
| 16 | stdout = ''; |
| 17 | hijackStdout(function(data) { |
| 18 | stdout += data; |
| 19 | }); |
| 20 | |
| 21 | stderr = ''; |
| 22 | hijackStderr(function(data) { |
| 23 | stderr += data; |
| 24 | }); |
| 25 | |
| 26 | c = new Console({ stdout: process.stdout, |
| 27 | stderr: process.stderr, |
| 28 | colorMode: false, |
| 29 | groupIndentation: groupIndentation }); |
| 30 | } |
| 31 | |
| 32 | function teardown() { |
| 33 | restoreStdout(); |
no outgoing calls
no test coverage detected
searching dependent graphs…