bbaldino
07/02/2020, 4:25 PMbbaldino
07/02/2020, 4:36 PMsam
07/02/2020, 4:42 PMsam
07/02/2020, 4:42 PMbbaldino
07/02/2020, 4:43 PMbbaldino
07/02/2020, 4:43 PMcontext -> context -> should
bbaldino
07/02/2020, 4:43 PMsam
07/02/2020, 4:43 PMbbaldino
07/02/2020, 4:44 PMsam
07/02/2020, 4:44 PMbbaldino
07/02/2020, 4:44 PMwhen jibri isn't busy
in that chainsam
07/02/2020, 4:44 PMsam
07/02/2020, 4:45 PMwhen jibri isn't busy
is that the only onebbaldino
07/02/2020, 4:45 PMbbaldino
07/02/2020, 4:45 PM"before the clients-muted timeout"
sam
07/02/2020, 4:45 PMsam
07/02/2020, 4:46 PMbbaldino
07/02/2020, 4:46 PMcontext
sam
07/02/2020, 4:47 PMbbaldino
07/02/2020, 4:47 PMsam
07/02/2020, 4:48 PMbbaldino
07/02/2020, 4:48 PMsam
07/02/2020, 4:48 PMsam
07/02/2020, 4:48 PMbbaldino
07/02/2020, 4:49 PMbbaldino
07/02/2020, 4:49 PMsam
07/02/2020, 4:49 PMbbaldino
07/02/2020, 4:50 PMbbaldino
07/02/2020, 4:51 PMbbaldino
07/02/2020, 4:51 PMsam
07/02/2020, 4:51 PMbbaldino
07/02/2020, 4:51 PMsam
07/02/2020, 4:51 PMbbaldino
07/02/2020, 4:53 PMbbaldino
07/02/2020, 4:53 PMsam
07/02/2020, 4:55 PMsam
07/02/2020, 4:55 PMsam
07/02/2020, 4:56 PMsam
07/02/2020, 4:56 PMbbaldino
07/02/2020, 4:56 PMthanksforallthefish
07/10/2020, 10:55 AMBehaviorSpec
. I can reproduce with
class AnotherTest : BehaviorSpec() {
override fun isolationMode(): IsolationMode? = IsolationMode.InstancePerLeaf
init {
given("test1") {
`when`("when1") {
then("then1") {
1 shouldBe 1
}
then("then1.1") {
1 shouldBe 1
}
then("then1.2") {
1 shouldBe 1
}
}
}
given("test2") {
`when`("when2") {
then("then2") {
1 shouldBe 1
}
}
}
given("test3") {
`when`("when3") {
then("then3") {
1 shouldBe 1
}
}
}
given("test4") {
`when`("when4") {
then("then4") {
1 shouldBe 1
}
}
}
}
}
as you already noticed @sam InstancePerLeaf
seems to be the culprit. I am on kotest 4.1.1 and plugin 1.0.5sam
07/13/2020, 2:00 PM