Combine methods

This commit is contained in:
Jacob Wallraff
2023-03-06 15:16:26 -08:00
parent 0001dd045c
commit b272ab29be
16 changed files with 42 additions and 70 deletions
+2 -3
View File
@@ -2,11 +2,10 @@ import {Diagnostic, DiagnosticSeverity} from "vscode-languageserver-types";
import {createDocument} from "./test-utils/document";
import {validate} from "./validate";
import {defaultValueProviders} from "./value-providers/default";
import {clearParsedCache, clearWorkflowTemplateCache} from "./utils/workflow-cache";
import {clearCache} from "./utils/workflow-cache";
beforeEach(() => {
clearWorkflowTemplateCache();
clearParsedCache();
clearCache();
});
describe("validation", () => {