You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class SampleTest(
....
): SpringFunSpec({
val importedContext = ImportedContext(....)
include(importedContext.context)
// Other tests
})
Where the importedContext.context is a factory that looks like
val context = funSpec {
context("V1") {
beforeTest {
// Mock stuff
}
test("Test case 1") {
// Test code
}
}
}
Now I want to run only this line
include(importedContext.context)
My expectation is all the tests imported via this include statement will run. But the run test button does not show up beside the line on intellij
The text was updated successfully, but these errors were encountered:
Rattlehead931
changed the title
Run only tests included via the import statement
Run only tests included via the include statement
Sep 4, 2024
I have a class like this
Where the importedContext.context is a factory that looks like
Now I want to run only this line
include(importedContext.context)
My expectation is all the tests imported via this include statement will run. But the run test button does not show up beside the line on intellij
The text was updated successfully, but these errors were encountered: