UNPKG
@ovotech/cypress-tourist
Version:
latest (1.3.4)
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
0.0.14
0.0.5
Visit a place, take a picture. Compare.
github.com/ovotech/cypress-tourist
ovotech/cypress-tourist
@ovotech/cypress-tourist
/
src
/
utils
/
resetDirectory.js
8 lines
(6 loc)
•
157 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
fs =
require
(
'fs'
)
const
rimrafSync =
require
(
'rimraf'
).
sync
exports
.
resetDirectory
=
filePath
=>
{
rimrafSync
(filePath) fs.
mkdirSync
(filePath) }