(fs, dir, gitdir)
| 41 | } |
| 42 | |
| 43 | const addUserConfig = async (fs, dir, gitdir) => { |
| 44 | await setConfig({ fs, dir, gitdir, path: 'user.name', value: 'stash tester' }) |
| 45 | await setConfig({ |
| 46 | fs, |
| 47 | dir, |
| 48 | gitdir, |
| 49 | path: 'user.email', |
| 50 | value: 'test@stash.com', |
| 51 | }) |
| 52 | } |
| 53 | |
| 54 | const stashChanges = async ( |
| 55 | fs, |
no test coverage detected
searching dependent graphs…