Files
cypress/packages/server/lib/util/find_process.js
Amir Rustamzadeh f313dd0b84 iterate through specs in parallel (#2154)
- fixes: #2153
- fixes: #1566
- fixes: #1690
- fixes: #2275
- fixes: #2276
2018-08-06 07:24:19 -04:00

10 lines
136 B
JavaScript

const findProcess = require('find-process')
const byPid = (pid) => {
return findProcess('pid', pid)
}
module.exports = {
byPid,
}