--- a/tests/src/rmrk/util/helpers.ts +++ b/tests/src/rmrk/util/helpers.ts @@ -42,6 +42,7 @@ export async function missingRequiredPallets(requiredPallets: string[]): Promise { const api = await getApiConnection(); const pallets = getModuleNames(api); + await api.disconnect(); return requiredPallets.filter(p => !pallets.includes(p)); }