managed sessions only. allow for rename/delete
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { startServers } from './server-utils.js';
|
||||
|
||||
export default async function globalSetup() {
|
||||
// Skip if servers are managed externally (e.g., by scripts/test)
|
||||
if (process.env.SKIP_SERVER_SETUP) {
|
||||
console.log('\n=== Skipping server setup (SKIP_SERVER_SETUP is set) ===\n');
|
||||
return;
|
||||
}
|
||||
console.log('\n=== Starting E2E Test Environment ===\n');
|
||||
await startServers(3000, 5173);
|
||||
console.log('\n=== E2E Test Environment Ready ===\n');
|
||||
}
|
||||
Reference in New Issue
Block a user