mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
8 lines
248 B
TypeScript
8 lines
248 B
TypeScript
/* eslint-disable */
|
|
|
|
module.exports = async function() {
|
|
// Put clean up logic here (e.g. stopping services, docker-compose, etc.).
|
|
// Hint: `globalThis` is shared between setup and teardown.
|
|
console.log(globalThis.__TEARDOWN_MESSAGE__);
|
|
};
|