Aalex Gabi

Results 9 issues of Aalex Gabi

If a process gets killed (by user or by the os due to reaching memory limit) the resulting error hides the actual cause: ``` `` failed with code null ```...

## 🐛 Bug Report Test case is executed even if beforeAll did not finish. ## To Reproduce This test file: ```js beforeAll(async () => new Promise((resolve, reject) => { //...

Needs Triage
Bug Report

#### What problem are you trying to solve? I need to know the caller that generated a given http error. #### Describe the feature I use node 13 which has...

✭ help wanted ✭
documentation

I use the same stream to do both a direct upload and a zip upload to avoid downloading the file twice: ``` // Create source stream const sourceBucketStream = sourceBucket.file('image.png').createReadStream();...

Example: ``` > require('psl').get('1.2.3.4') '3.4' ``` I think this should return the entire IP and not part of it. This also does not work with ipv6: ``` > require('psl').get('2001:0db8:85a3:0000:0000:8a2e:0370:7334') null...

I can serialize and de-serialize an expression to JSON as shown here: https://mathjs.org/docs/core/serialization.html In my application the expression is part of a bigger JSON which is de-serialized at a higher...

feature
help wanted

I'm using Child_Process like this: ```js await pipeline([ got.stream(url), DuplexChildProcess.spawn('convert', convertArgs), DuplexChildProcess.spawn('pngquant', quantArgs), ... ]) ``` If pngquant command fails I have an unhandled error: ``` /home/.../node_modules/duplex-child-process/index.js:146 cb && cb()...

I needed it and seems to be requested in here https://github.com/davglass/license-checker/issues/187

When executing this file with c8 I get the coverage information. ```js function run() { if (1) { console.log(1); } else { console.log(2); } } run(); setTimeout(process.exit, 3000) ``` However...

bug