Skip to content

Commit

Permalink
Wait more time
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo committed Oct 31, 2024
1 parent fe0e194 commit d515220
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/gradle-suite/projectView.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@

import * as assert from "assert";
import { ContainerNode, contextManager, DataNode, DependencyExplorer,
languageServerApiManager,
PackageRootNode, PrimaryTypeNode, ProjectNode } from "../../extension.bundle";
import { fsPath, setupTestEnv, Uris } from "../shared";

// tslint:disable: only-arrow-functions
suite("Gradle Project View Tests", () => {

suiteSetup(setupTestEnv);
suiteSetup(async () => {
await setupTestEnv();
await languageServerApiManager.ready();
});

test("Can node render correctly", async function() {
const explorer = DependencyExplorer.getInstance(contextManager.context);
Expand Down

0 comments on commit d515220

Please sign in to comment.