mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
de610f419b
* Move response bodies out of DB * Small tweak
17 lines
256 B
JavaScript
17 lines
256 B
JavaScript
const RANDOM_STRING = Math.random().toString().replace('.', '');
|
|
|
|
module.exports = {
|
|
remote: {
|
|
app: {
|
|
getPath (name) {
|
|
return `/tmp/insomnia-tests-${RANDOM_STRING}/${name}`;
|
|
}
|
|
}
|
|
},
|
|
ipcRenderer: {
|
|
on () {
|
|
|
|
}
|
|
}
|
|
};
|