mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
9 lines
336 B
TypeScript
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 });
|
|
}
|