diff --git a/packages/server/src/utilities/rowProcessor/tests/inputProcessing.spec.ts b/packages/server/src/utilities/rowProcessor/tests/inputProcessing.spec.ts index 10e4a95cf9..a13dbbb769 100644 --- a/packages/server/src/utilities/rowProcessor/tests/inputProcessing.spec.ts +++ b/packages/server/src/utilities/rowProcessor/tests/inputProcessing.spec.ts @@ -1,20 +1,13 @@ -import TestConfiguration from "../../../tests/utilities/TestConfiguration" import { inputProcessing } from ".." import { generator, structures } from "@budibase/backend-core/tests" import { FieldType, FieldTypeSubtypes, Table } from "@budibase/types" import * as bbReferenceProcessor from "../bbReferenceProcessor" -const config = new TestConfiguration() - jest.mock("../bbReferenceProcessor", (): typeof bbReferenceProcessor => ({ processOutputBBReferences: jest.fn(), })) describe("rowProcessor - inputProcessing", () => { - beforeAll(async () => { - await config.init() - }) - beforeEach(() => { jest.resetAllMocks() })