Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restructure Kotlin/JS and Kotlin/JS/Wasm testing, fix #3329 #3954

Merged
merged 3 commits into from May 1, 2024

Conversation

OliverO2
Copy link
Contributor

What's inside

  • Use the FrameworkAdapter interface provided by the Kotlin/JS test infra, so that failed tests are correctly reported for the JS target on Node.js (does not apply to Wasm/JS, which does not require "adapter transformation").
  • Use JS Promise instead of callbacks to interact with the JS test framework.
  • Clean up the code to avoid API layers changing from Mocha/Jasmine style ("describe", "it) to Kotlin test style ("suite", "test) and back.

Testing JS

Preparation

  • settings.gradle.kts:
    • Add mavenLocal() to repositories.
    • Uncomment ":kotest-tests:kotest-tests-js",
  • kotest-tests/kotest-tests-js/build.gradle.kts: use appropriate version numbers for mavenLocal publication:
    • id("io.kotest.multiplatform") version "5.9.0-LOCAL"
    • kotestCompilerPluginVersion.set("5.9.0-LOCAL")

Tasks

  • gradlew publishToMavenLocal (once for the Kotest compiler plugin)

  • gradlew -p kotest-tests/kotest-tests-js --continue cleanAllTests jsBrowserTest jsNodeTest wasmJsBrowserTest wasmJsNodeTest

  • gradlew -p kotest-tests/kotest-tests-js cleanJsBrowserTest jsBrowserTest

  • gradlew -p kotest-tests/kotest-tests-js cleanJsNodeTest jsNodeTest

  • gradlew -p kotest-tests/kotest-tests-js cleanWasmJsNodeTest wasmJsNodeTest

  • gradlew -p kotest-tests/kotest-tests-js cleanWasmJsBrowserTest wasmJsBrowserTest

Check failing tests

Create kotest-tests/kotest-tests-js/src/jsHostedTest/kotlin/io/kotest/engine/js/BasicTests.kt with content:

package io.kotest.engine.js

import io.kotest.core.spec.style.FunSpec
import io.kotest.matchers.shouldBe
import kotlinx.coroutines.delay
import kotlin.time.Duration.Companion.seconds

class BasicTests : FunSpec({
   test("pass") {
      log("test 'pass' running\n")
      true shouldBe true
      log("test 'pass' finished\n")
   }

   test("fail") {
      log("test 'fail' running\n")
      false shouldBe true
      log("test 'fail' finished (why?)\n")
   }

   test("pass delay") {
      log("test 'pass delay' running\n")
      delay(3.seconds)
      log("test 'pass delay' past delay\n")
      true shouldBe true
      log("test 'pass delay' finished\n")
   }

   test("fail delay") {
      log("test 'fail delay' running\n")
      delay(3.seconds)
      log("test 'fail delay' past delay\n")
      false shouldBe true
      log("test 'fail delay' finished (why?)\n")
   }

   test("!disabled") {
      log("test 'disabled' running (why?)\n")
   }
})

fun log(message: String) {
   println("$message\n")
}

Debug browser tests

Problems with Kotest functions running in the browser may not show up in the regular test output, but only in the browser's console. This is invisible with headless browsers. Unless we tweak things a bit:

  1. Create kotest-tests/kotest-tests-js/karma.config.d/keep-browser-open.js with content:
    // https://stackoverflow.com/questions/31632191/have-karma-keep-browser-and-test-results-open-longer
    config.set({
       singleRun: false,
       autoWatch: true
    });
  2. Add this section to the kotlin block in kotest-tests/kotest-tests-js/build.gradle.kts:
    js {
      browser {
        testTask {
          useKarma {
            useDebuggableChrome()
            // useChromeHeadless()
          }
        }
      }
    }
  3. The browser may launch immediately, or you may need to click on the link shown in the test output.
  4. When the browser launches, click the DEBUG button.
  5. In the new tab, open the browser's dev tools, look for console messages, etc.
  6. Refresh as necessary.
  7. The node engine may hang at the end. On Linux, you may need to hard kill it (SIGKILL).

* Use the `FrameworkAdapter` interface provided by the Kotlin/JS test
  infra, so that failed tests are correctly reported for the JS target
  on Node.js (does not apply to Wasm/JS, which does not require
  "adapter transformation").
* Use JS Promise instead of callbacks to interact with the JS test
  framework.
* Clean up the code to avoid API layers changing from Mocha/Jasmine
  style ("describe", "it) to Kotlin test style ("suite", "test) and
  back.
@OliverO2
Copy link
Contributor Author

If there are no objections, I'd like to get this merged within 48 hours in order to test a bit with the snapshot in advance of any potentially upcoming release.

@OliverO2 OliverO2 merged commit 2f9215c into master May 1, 2024
15 checks passed
@OliverO2 OliverO2 deleted the oo2/fix-nodejs-failure-report branch May 1, 2024 18:12
renovate bot added a commit to StefanLobbenmeier/yt-dlp-compose that referenced this pull request May 9, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [io.kotest:kotest-runner-junit5](https://togithub.com/kotest/kotest) |
`5.8.1` -> `5.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-runner-junit5/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-runner-junit5/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-runner-junit5/5.8.1/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-runner-junit5/5.8.1/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>kotest/kotest (io.kotest:kotest-runner-junit5)</summary>

### [`v5.9.0`](https://togithub.com/kotest/kotest/releases/tag/v5.9.0)

#### Highlights

Support for wasmJs has been added, curtesy of
[@&#8203;OliverO2](https://togithub.com/OliverO2)

#### What's Changed

- Add wasmJs target by [@&#8203;OliverO2](https://togithub.com/OliverO2)
in
[kotest/kotest#3805
- fix(docs): indentation in System Extensions by
[@&#8203;craigpastro](https://togithub.com/craigpastro) in
[kotest/kotest#3940
- Change Arb.filterIsInstance() signature to use single type parameter
by [@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3943
- Add missing functions to property-arbs docs by
[@&#8203;snowe2010](https://togithub.com/snowe2010) in
[kotest/kotest#3945
- Increasing JVM heap allowance on GitHub by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3948
- Fix JS and Wasm/JS test timeouts, bring back Node.js test output by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3953
- add-similarity-to-contains-draft
([#&#8203;42](https://togithub.com/kotest/kotest/issues/42)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3906
- Update Sonatype snapshot URL by
[@&#8203;aSemy](https://togithub.com/aSemy) in
[kotest/kotest#3956
- Fix json assertions artifact coordinate in docs by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[kotest/kotest#3968
- Create CODE_OF_CONDUCT.md by
[@&#8203;sschuberth](https://togithub.com/sschuberth) in
[kotest/kotest#3987
- Restructure Kotlin/JS and Kotlin/JS/Wasm testing, fix
[#&#8203;3329](https://togithub.com/kotest/kotest/issues/3329) by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3954
- Correct Collection Matchers Documentation For
`collection.shouldContainAllInAnyOrder()` by
[@&#8203;u-ways-e](https://togithub.com/u-ways-e) in
[kotest/kotest#3995
- chore(deps): update plugin com.gradle.enterprise to v3.17.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3990
- Add kotlin-faker to extensions list by
[@&#8203;serpro69](https://togithub.com/serpro69) in
[kotest/kotest#3971
- Better assertion failures for containJsonKeyValue by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3949
- fix(deps): update dependency io.github.classgraph:classgraph to
v4.8.172 by [@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3957
- Add similarity to contain exactly in any order by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3938
- Fix Arb.list failing within edge cases in case of null values by
[@&#8203;oliverblaha](https://togithub.com/oliverblaha) in
[kotest/kotest#3982
- chore(deps): update plugin kotlinbinarycompatibilityvalidator to
v0.14.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3993
- chore(deps): update plugin io.kotest.multiplatform to v5.8.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3992
- fixing the kotest autoscan warning message to reference the right
property name by [@&#8203;stepanv](https://togithub.com/stepanv) in
[kotest/kotest#4000
- fix(deps): update dependency io.projectreactor.tools:blockhound to
v1.0.9.release by [@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3989
- Allow comparison between empty set and other iterables by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#4005
- Moving similarity feature to kotest-assertions-core by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#4006

#### New Contributors

- [@&#8203;craigpastro](https://togithub.com/craigpastro) made their
first contribution in
[kotest/kotest#3940
- [@&#8203;snowe2010](https://togithub.com/snowe2010) made their first
contribution in
[kotest/kotest#3945
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[kotest/kotest#3968
- [@&#8203;u-ways-e](https://togithub.com/u-ways-e) made their first
contribution in
[kotest/kotest#3995
- [@&#8203;serpro69](https://togithub.com/serpro69) made their first
contribution in
[kotest/kotest#3971
- [@&#8203;stepanv](https://togithub.com/stepanv) made their first
contribution in
[kotest/kotest#4000

**Full Changelog**:
kotest/kotest@v5.8.1...v5.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/StefanLobbenmeier/yt-dlp-compose).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNTEuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM1MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to typesafegithub/github-actions-typing that referenced this pull request May 9, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [io.kotest:kotest-bom](https://togithub.com/kotest/kotest) | `5.8.1`
-> `5.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-bom/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-bom/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-bom/5.8.1/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-bom/5.8.1/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>kotest/kotest (io.kotest:kotest-bom)</summary>

### [`v5.9.0`](https://togithub.com/kotest/kotest/releases/tag/v5.9.0)

#### Highlights

Support for wasmJs has been added, curtesy of
[@&#8203;OliverO2](https://togithub.com/OliverO2)

#### What's Changed

- Add wasmJs target by [@&#8203;OliverO2](https://togithub.com/OliverO2)
in
[kotest/kotest#3805
- fix(docs): indentation in System Extensions by
[@&#8203;craigpastro](https://togithub.com/craigpastro) in
[kotest/kotest#3940
- Change Arb.filterIsInstance() signature to use single type parameter
by [@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3943
- Add missing functions to property-arbs docs by
[@&#8203;snowe2010](https://togithub.com/snowe2010) in
[kotest/kotest#3945
- Increasing JVM heap allowance on GitHub by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3948
- Fix JS and Wasm/JS test timeouts, bring back Node.js test output by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3953
- add-similarity-to-contains-draft
([#&#8203;42](https://togithub.com/kotest/kotest/issues/42)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3906
- Update Sonatype snapshot URL by
[@&#8203;aSemy](https://togithub.com/aSemy) in
[kotest/kotest#3956
- Fix json assertions artifact coordinate in docs by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[kotest/kotest#3968
- Create CODE_OF_CONDUCT.md by
[@&#8203;sschuberth](https://togithub.com/sschuberth) in
[kotest/kotest#3987
- Restructure Kotlin/JS and Kotlin/JS/Wasm testing, fix
[#&#8203;3329](https://togithub.com/kotest/kotest/issues/3329) by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3954
- Correct Collection Matchers Documentation For
`collection.shouldContainAllInAnyOrder()` by
[@&#8203;u-ways-e](https://togithub.com/u-ways-e) in
[kotest/kotest#3995
- chore(deps): update plugin com.gradle.enterprise to v3.17.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3990
- Add kotlin-faker to extensions list by
[@&#8203;serpro69](https://togithub.com/serpro69) in
[kotest/kotest#3971
- Better assertion failures for containJsonKeyValue by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3949
- fix(deps): update dependency io.github.classgraph:classgraph to
v4.8.172 by [@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3957
- Add similarity to contain exactly in any order by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3938
- Fix Arb.list failing within edge cases in case of null values by
[@&#8203;oliverblaha](https://togithub.com/oliverblaha) in
[kotest/kotest#3982
- chore(deps): update plugin kotlinbinarycompatibilityvalidator to
v0.14.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3993
- chore(deps): update plugin io.kotest.multiplatform to v5.8.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3992
- fixing the kotest autoscan warning message to reference the right
property name by [@&#8203;stepanv](https://togithub.com/stepanv) in
[kotest/kotest#4000
- fix(deps): update dependency io.projectreactor.tools:blockhound to
v1.0.9.release by [@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3989
- Allow comparison between empty set and other iterables by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#4005
- Moving similarity feature to kotest-assertions-core by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#4006

#### New Contributors

- [@&#8203;craigpastro](https://togithub.com/craigpastro) made their
first contribution in
[kotest/kotest#3940
- [@&#8203;snowe2010](https://togithub.com/snowe2010) made their first
contribution in
[kotest/kotest#3945
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[kotest/kotest#3968
- [@&#8203;u-ways-e](https://togithub.com/u-ways-e) made their first
contribution in
[kotest/kotest#3995
- [@&#8203;serpro69](https://togithub.com/serpro69) made their first
contribution in
[kotest/kotest#3971
- [@&#8203;stepanv](https://togithub.com/stepanv) made their first
contribution in
[kotest/kotest#4000

**Full Changelog**:
kotest/kotest@v5.8.1...v5.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/typesafegithub/github-actions-typing).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNTEuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM1MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to TeamDev-IP/JxBrowser-Gradle-Plugin that referenced this pull request May 10, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [io.kotest:kotest-assertions-core](https://togithub.com/kotest/kotest)
| `5.8.1` -> `5.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-assertions-core/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-assertions-core/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-assertions-core/5.8.1/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-assertions-core/5.8.1/5.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>kotest/kotest (io.kotest:kotest-assertions-core)</summary>

### [`v5.9.0`](https://togithub.com/kotest/kotest/releases/tag/v5.9.0)

#### Highlights

Support for wasmJs has been added, curtesy of
[@&#8203;OliverO2](https://togithub.com/OliverO2)

#### What's Changed

- Add wasmJs target by [@&#8203;OliverO2](https://togithub.com/OliverO2)
in
[kotest/kotest#3805
- fix(docs): indentation in System Extensions by
[@&#8203;craigpastro](https://togithub.com/craigpastro) in
[kotest/kotest#3940
- Change Arb.filterIsInstance() signature to use single type parameter
by [@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3943
- Add missing functions to property-arbs docs by
[@&#8203;snowe2010](https://togithub.com/snowe2010) in
[kotest/kotest#3945
- Increasing JVM heap allowance on GitHub by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3948
- Fix JS and Wasm/JS test timeouts, bring back Node.js test output by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3953
- add-similarity-to-contains-draft
([#&#8203;42](https://togithub.com/kotest/kotest/issues/42)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3906
- Update Sonatype snapshot URL by
[@&#8203;aSemy](https://togithub.com/aSemy) in
[kotest/kotest#3956
- Fix json assertions artifact coordinate in docs by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[kotest/kotest#3968
- Create CODE_OF_CONDUCT.md by
[@&#8203;sschuberth](https://togithub.com/sschuberth) in
[kotest/kotest#3987
- Restructure Kotlin/JS and Kotlin/JS/Wasm testing, fix
[#&#8203;3329](https://togithub.com/kotest/kotest/issues/3329) by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3954
- Correct Collection Matchers Documentation For
`collection.shouldContainAllInAnyOrder()` by
[@&#8203;u-ways-e](https://togithub.com/u-ways-e) in
[kotest/kotest#3995
- chore(deps): update plugin com.gradle.enterprise to v3.17.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3990
- Add kotlin-faker to extensions list by
[@&#8203;serpro69](https://togithub.com/serpro69) in
[kotest/kotest#3971
- Better assertion failures for containJsonKeyValue by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3949
- fix(deps): update dependency io.github.classgraph:classgraph to
v4.8.172 by [@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3957
- Add similarity to contain exactly in any order by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3938
- Fix Arb.list failing within edge cases in case of null values by
[@&#8203;oliverblaha](https://togithub.com/oliverblaha) in
[kotest/kotest#3982
- chore(deps): update plugin kotlinbinarycompatibilityvalidator to
v0.14.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3993
- chore(deps): update plugin io.kotest.multiplatform to v5.8.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3992
- fixing the kotest autoscan warning message to reference the right
property name by [@&#8203;stepanv](https://togithub.com/stepanv) in
[kotest/kotest#4000
- fix(deps): update dependency io.projectreactor.tools:blockhound to
v1.0.9.release by [@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3989
- Allow comparison between empty set and other iterables by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#4005
- Moving similarity feature to kotest-assertions-core by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#4006

#### New Contributors

- [@&#8203;craigpastro](https://togithub.com/craigpastro) made their
first contribution in
[kotest/kotest#3940
- [@&#8203;snowe2010](https://togithub.com/snowe2010) made their first
contribution in
[kotest/kotest#3945
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[kotest/kotest#3968
- [@&#8203;u-ways-e](https://togithub.com/u-ways-e) made their first
contribution in
[kotest/kotest#3995
- [@&#8203;serpro69](https://togithub.com/serpro69) made their first
contribution in
[kotest/kotest#3971
- [@&#8203;stepanv](https://togithub.com/stepanv) made their first
contribution in
[kotest/kotest#4000

**Full Changelog**:
kotest/kotest@v5.8.1...v5.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/TeamDev-IP/JxBrowser-Gradle-Plugin).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNTEuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM1MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant