Skip to content

Commit

Permalink
update assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-enko committed Nov 21, 2024
1 parent 10cc480 commit 2a65691
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ class AndroidComposeIT {
withClue("expect dokkaGenerate runs successfully") {
shouldHaveTask(":dokkaGenerate").shouldHaveOutcome(UP_TO_DATE, SUCCESS)
shouldHaveTask(":dokkaGeneratePublicationHtml").shouldHaveOutcome(FROM_CACHE, SUCCESS)
shouldHaveTask(":dokkaGenerateModuleHtml").shouldHaveOutcome(FROM_CACHE, SUCCESS)
}
}

Expand All @@ -118,7 +117,6 @@ class AndroidComposeIT {
}
withClue("expect dokkaGenerate* work tasks are loaded from cache") {
shouldHaveTask(":dokkaGeneratePublicationHtml").shouldHaveOutcome(FROM_CACHE)
shouldHaveTask(":dokkaGenerateModuleHtml").shouldHaveOutcome(FROM_CACHE)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ class AndroidProjectIT {
withClue("expect dokkaGenerate runs successfully") {
shouldHaveTask(":dokkaGenerate").shouldHaveOutcome(UP_TO_DATE, SUCCESS)
shouldHaveTask(":dokkaGeneratePublicationHtml").shouldHaveOutcome(FROM_CACHE, SUCCESS)
shouldHaveTask(":dokkaGenerateModuleHtml").shouldHaveOutcome(FROM_CACHE, SUCCESS)
}
}

Expand All @@ -125,7 +124,6 @@ class AndroidProjectIT {
}
withClue("expect dokkaGenerate* work tasks are loaded from cache") {
shouldHaveTask(":dokkaGeneratePublicationHtml").shouldHaveOutcome(FROM_CACHE)
shouldHaveTask(":dokkaGenerateModuleHtml").shouldHaveOutcome(FROM_CACHE)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,6 @@ class ExampleProjectsTest {

ExampleProject.Multimodule -> {
shouldHaveTasksWithOutcome(
":docs:dokkaGenerateModuleHtml" to FROM_CACHE,
":childProjectA:dokkaGenerateModuleHtml" to FROM_CACHE,
":childProjectB:dokkaGenerateModuleHtml" to FROM_CACHE,
":docs:dokkaGeneratePublicationHtml" to FROM_CACHE,
Expand All @@ -295,7 +294,6 @@ class ExampleProjectsTest {

ExampleProject.VersioningMultimodule -> {
shouldHaveTasksWithOutcome(
":docs:dokkaGenerateModuleHtml" to FROM_CACHE,
":childProjectA:dokkaGenerateModuleHtml" to FROM_CACHE,
":childProjectB:dokkaGenerateModuleHtml" to FROM_CACHE,
":docs:dokkaGeneratePublicationHtml" to FROM_CACHE,
Expand All @@ -306,7 +304,6 @@ class ExampleProjectsTest {
else -> {
shouldHaveTasksWithOutcome(
":dokkaGeneratePublicationHtml" to FROM_CACHE,
":dokkaGenerateModuleHtml" to FROM_CACHE,
":dokkaGenerate" to UP_TO_DATE,
)
}
Expand Down

0 comments on commit 2a65691

Please sign in to comment.