Skip to content

Commit

Permalink
swisspost#162: stabilize some integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
roggerj committed Sep 7, 2017
1 parent a1ad126 commit c569ce6
Showing 1 changed file with 31 additions and 5 deletions.
36 changes: 31 additions & 5 deletions gateleen-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,37 @@ dependencies {
}

test {
onlyIf {
project.hasProperty("integrationTests")
}
}

//test {
// onlyIf {
// project.hasProperty("integrationTests")
// }
filter {
//specific test class, wildcard for packages
includeTestsMatching "*.HookJsUITest"
}
}
//
// exclude "*.HookJsUITest"
//
// filter {
// //specific test class, wildcard for packages
// includeTestsMatching "*.RouteTest"
// includeTestsMatching "*.HookJsUITest"
// }
//}

//task integrationTests {
//
// if (project.hasProperty("nonUiTests")) {
// tasks.gateleen-test.test
// }
//
// filter {
// onlyIf {
// project.hasProperty("onlyUITests")
// }
// //specific test class, wildcard for packages
// includeTestsMatching "*.HookJsUITest"
// }
//
//}

0 comments on commit c569ce6

Please sign in to comment.