2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2022-02-13 13:21:40 +00:00
|
|
|
const fs = require("fs");
|
|
|
|
|
2018-02-19 18:43:53 +00:00
|
|
|
const home = require("path").join(__dirname, ".thelounge");
|
2022-05-01 19:12:39 +00:00
|
|
|
require("../../src/config").setHome(home);
|
2022-02-13 13:21:40 +00:00
|
|
|
|
|
|
|
const STSPolicies = require("../../src/plugins/sts"); // Must be imported *after* setHome
|
|
|
|
|
|
|
|
exports.mochaGlobalTeardown = async function () {
|
|
|
|
STSPolicies.refresh.cancel(); // Cancel debounced function, so it does not write later
|
|
|
|
fs.unlinkSync(STSPolicies.stsFile);
|
|
|
|
};
|