From 2274ace697107acd59ae4c3d4360b2f2b58c90b9 Mon Sep 17 00:00:00 2001 From: Aaron Cox Date: Tue, 13 Aug 2024 11:12:30 -0700 Subject: [PATCH] Disabling resource provider check Disabling because the reproducibility of this is difficult due to the varying responses from the server. We should be doing this in the resource provider plugin anyways. --- test/tests/plugins.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tests/plugins.ts b/test/tests/plugins.ts index d6372fd4..71902396 100644 --- a/test/tests/plugins.ts +++ b/test/tests/plugins.ts @@ -1,7 +1,7 @@ -import {resourceProviderPlugin} from './plugins/transact/resource-provider' +// import {resourceProviderPlugin} from './plugins/transact/resource-provider' suite('plugins', function () { suite('transact', function () { - resourceProviderPlugin() + // resourceProviderPlugin() }) })