File size: 289 Bytes
96e86e5
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import {
  cleanupStaleEmbeddedPostgresTestRegistrations,
  prepareEmbeddedPostgresTestSupport,
} from "./embedded-postgres-manager.js";

export default async function globalSetup() {
  await cleanupStaleEmbeddedPostgresTestRegistrations();
  await prepareEmbeddedPostgresTestSupport();
}