mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-10 04:54:56 +10:00
11 lines
348 B
TypeScript
11 lines
348 B
TypeScript
/* eslint-disable */
|
|
var __TEARDOWN_MESSAGE__: string;
|
|
|
|
module.exports = async function () {
|
|
// Start services that that the app needs to run (e.g. database, docker-compose, etc.).
|
|
console.log("\nSetting up...\n");
|
|
|
|
// Hint: Use `globalThis` to pass variables to global teardown.
|
|
globalThis.__TEARDOWN_MESSAGE__ = "\nTearing down...\n";
|
|
};
|