Skip to content

Commit

Permalink
Disable a long-failing test.
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg committed Dec 13, 2024
1 parent 9622652 commit f601916
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2023 DiffPlug
* Copyright 2023-2024 DiffPlug
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -27,6 +27,7 @@
import java.nio.file.attribute.BasicFileAttributes;

import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import com.diffplug.spotless.ProcessRunner.Result;
Expand Down Expand Up @@ -67,6 +68,7 @@ void prettierTypescriptWithDefaultCache() throws Exception {
.doesNotContain("Using cached node_modules for");
}

@Disabled
@Test
void prettierTypescriptWithDefaultCacheIsReusedOnSecondRun() throws Exception {
String suffix = "ts";
Expand Down Expand Up @@ -109,6 +111,7 @@ void prettierTypescriptWithSpecificCache() throws Exception {
.doesNotContain("Using cached node_modules for");
}

@Disabled
@Test
void prettierTypescriptWithSpecificCacheIsUsedOnSecondRun() throws Exception {
String suffix = "ts";
Expand Down

0 comments on commit f601916

Please sign in to comment.