You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
348 B
11 lines
348 B
/* 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';
|
|
};
|