fix preparing test
This commit is contained in:
		
							parent
							
								
									f0670dde20
								
							
						
					
					
						commit
						2bf6a04f81
					
				
					 2 changed files with 14 additions and 6 deletions
				
			
		|  | @ -1,5 +1,9 @@ | ||||||
| const fs = require("fs"); | const fs = require("fs"); | ||||||
| 
 | 
 | ||||||
| fs.rmdirSync("./data/test-chrome-profile", { | const path = "./data/test-chrome-profile"; | ||||||
|  | 
 | ||||||
|  | if (fs.existsSync(path)) { | ||||||
|  |     fs.rmdirSync(path, { | ||||||
|         recursive: true, |         recursive: true, | ||||||
|     }); |     }); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | @ -1,5 +1,9 @@ | ||||||
| const fs = require("fs"); | const fs = require("fs"); | ||||||
| 
 | 
 | ||||||
| fs.rmdirSync("./data/test", { | const path = "./data/test"; | ||||||
|  | 
 | ||||||
|  | if (fs.existsSync(path)) { | ||||||
|  |     fs.rmdirSync(path, { | ||||||
|         recursive: true, |         recursive: true, | ||||||
|     }); |     }); | ||||||
|  | } | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue