Bump up live hints timeout for tests

This commit is contained in:
BoykoAlex
2018-05-10 17:06:06 -04:00
parent f74787563c
commit a88a33a647
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ else
fi
cd ${sources}
./mvnw clean package
./mvnw clean package -DargLine="-Dlsp.completions.indentation.enable=true -Dlsp.yaml.completions.errors.disable=true"
timestamp=`date -u +%Y%m%d%H%M`
for i in `ls *-language-server/target/*.jar`; do

View File

@@ -141,7 +141,7 @@ public class LanguageServerHarness<S extends SimpleLanguageServerWrapper> {
this.defaultLanguageId = defaultLanguageId;
}
public static final Duration HIGHLIGHTS_TIMEOUT = Duration.ofMillis(6_000); //Why so long?
public static final Duration HIGHLIGHTS_TIMEOUT = Duration.ofMillis(20_000); //Why so long?
public LanguageServerHarness(Callable<S> factory) throws Exception {
this(factory, LanguageId.PLAINTEXT);