()
| 195 | // ============================================================================= |
| 196 | |
| 197 | function testEmptyInput() { |
| 198 | const result = textSync( |
| 199 | pullSync( |
| 200 | pullSync(fromSync(''), compressGzipSync()), |
| 201 | decompressGzipSync(), |
| 202 | ), |
| 203 | ); |
| 204 | assert.strictEqual(result, ''); |
| 205 | } |
| 206 | |
| 207 | // ============================================================================= |
| 208 | // Run all tests |
no test coverage detected
searching dependent graphs…