keepassxc-browser/tests/global-teardown.ts
2024-07-14 18:50:01 +03:00

9 lines
336 B
TypeScript

import type { FullConfig } from '@playwright/test';
import fs from 'fs';
const DEST = 'keepassxc-browser/tests';
export default async function globalTeardown(config: FullConfig) {
// Delete previously created temporary directory. Comment for re-running tests manually inside the extension.
fs.rmSync(DEST, { recursive: true });
}