Files
Kmake/test/fixtures/test-runner/global-setup-teardown/basic-setup-teardown.mjs
2026-05-26 23:36:42 -07:00

19 lines
546 B
JavaScript

import * as fs from 'node:fs';
// Path for temporary file to track execution
const setupFlagPath = process.env.SETUP_FLAG_PATH;
const teardownFlagPath = process.env.TEARDOWN_FLAG_PATH;
async function globalSetup() {
console.log('Global setup executed');
fs.writeFileSync(setupFlagPath, 'Setup was executed');
}
async function globalTeardown() {
console.log('Global teardown executed');
fs.writeFileSync(teardownFlagPath, 'Teardown was executed');
fs.rmSync(setupFlagPath, { force: true });
}
export { globalSetup, globalTeardown };