(action, args = {})
| 12 | const history = []; |
| 13 | |
| 14 | function record(action, args = {}) { |
| 15 | history.push({ action, args, timestamp: new Date().toISOString() }); |
| 16 | } |
| 17 | |
| 18 | const tmpUserDataDir = path.join(os.tmpdir(), 'br_user_data'); |
| 19 |
no outgoing calls
no test coverage detected