keepassxc-browser/tests/global-teardown.ts

10 lines
336 B
TypeScript
Raw Permalink Normal View History

2024-07-14 12:02:11 +00:00
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 });
}