all: sync with master, upd chlog
This commit is contained in:
11
client/tests/e2e/globalTeardown.ts
Normal file
11
client/tests/e2e/globalTeardown.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { existsSync, unlinkSync } from 'fs';
|
||||
import { CONFIG_FILE_PATH } from '../constants';
|
||||
|
||||
async function globalTeardown() {
|
||||
// Remove the test config file
|
||||
if (existsSync(CONFIG_FILE_PATH)) {
|
||||
unlinkSync(CONFIG_FILE_PATH);
|
||||
}
|
||||
}
|
||||
|
||||
export default globalTeardown;
|
||||
Reference in New Issue
Block a user