diff options
Diffstat (limited to 'extra/remove-playwright-test-data.js')
-rw-r--r-- | extra/remove-playwright-test-data.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/extra/remove-playwright-test-data.js b/extra/remove-playwright-test-data.js new file mode 100644 index 0000000..0628807 --- /dev/null +++ b/extra/remove-playwright-test-data.js @@ -0,0 +1,6 @@ +const fs = require("fs"); + +fs.rmSync("./data/playwright-test", { + recursive: true, + force: true, +}); |