We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a303212 commit 36a4cc2Copy full SHA for 36a4cc2
src/functionalTest/java/io/miret/etienne/gradle/sass/SassGradlePluginFunctionalTest.java
@@ -306,6 +306,17 @@ void should_be_quiet () throws IOException {
306
));
307
}
308
309
+ @Test
310
+ void should_support_Gradle_configuration_cache() throws IOException {
311
+ createExecutable();
312
+
313
+ GradleRunner.create()
314
+ .withPluginClasspath()
315
+ .withArguments("--configuration-cache", "compileCustomSass")
316
+ .withProjectDir(projectDir.toFile())
317
+ .build();
318
+ }
319
320
private Path createExecutable () throws IOException {
321
Path out = projectDir.resolve ("build/out");
322
Path sassDir = projectDir.resolve (".gradle/sass/some.specific.version/dart-sass");
0 commit comments