Kabbura
03/19/2020, 6:14 PMkotlin {
target {
browser {
testTask {
useKarma {
useChromeHeadless()
}
}
}
}
}
This generates project-test.js
file for the test directory. I created another integrationTest
directory but I cannot figure out how to configure the test tasks to look for the integration tests directory.Kabbura
03/19/2020, 11:09 PM<http://filter.ec|filter.exclueTestMatching
function as follows>
testTask {
filter.excludeTestsMatching("*Integration*")
useKarma {
useChromeHeadless()
}
}
If anyone has a better approach I am interested.Rob Murdock
03/20/2020, 2:05 PMRob Murdock
03/20/2020, 2:06 PM