diff --git a/backend/build.gradle.kts b/backend/build.gradle.kts index d933d7c..358965a 100644 --- a/backend/build.gradle.kts +++ b/backend/build.gradle.kts @@ -88,7 +88,7 @@ configure { avoidCallsTo.set(setOf("kotlin.jvm.internal")) mutators.set(setOf("STRONGER")) targetClasses.set(setOf( - "com.factstore.application.FlowTemplateParser", + "com.factstore.application.template.TemplateParser", "com.factstore.application.SlackCommandParser", "com.factstore.application.ScopeFilter", "com.factstore.application.CiContextResolver", @@ -96,7 +96,8 @@ configure { "com.factstore.application.SecurityScanService" )) targetTests.set(setOf( - "com.factstore.FlowTemplateParserTest", + "com.factstore.TemplateParserTest", + "com.factstore.application.TemplateParserTest", "com.factstore.SlackCommandParserTest", "com.factstore.SnapshotScopeFilterTest", "com.factstore.CiContextResolverTest",