sv
Version:
A command line interface (CLI) for creating and maintaining Svelte applications
15 lines (12 loc) • 361 B
JavaScript
import { fileURLToPath } from 'node:url';
import { setupGlobal } from 'sv/testing';
const TEST_DIR = fileURLToPath(new URL('../../.test-output/', import.meta.url));
export default setupGlobal({
TEST_DIR,
pre: async () => {
// global setup (e.g. spin up docker containers)
},
post: async () => {
// tear down... (e.g. cleanup docker containers)
}
});