This is an automated email from the ASF dual-hosted git repository.
thiagohp pushed a commit to branch feature/requirejs-less
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
The following commit(s) were added to refs/heads/feature/requirejs-less by this
push:
new dd3082045 TAP5-2810: enabling tests with Require.js disabled
dd3082045 is described below
commit dd308204581d4c025a1f8d7aa839791c60844ca9
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Tue Jul 29 08:05:37 2025 -0300
TAP5-2810: enabling tests with Require.js disabled
---
build.gradle | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/build.gradle b/build.gradle
index a80b69637..4a4e5f07f 100755
--- a/build.gradle
+++ b/build.gradle
@@ -539,9 +539,9 @@ task combinedJacocoReport(type:JacocoReport){
task continuousIntegration {
// tapestry-javadoc doesn't work with Java 8 anymore. That's why it's only
added if != 8.
- def dependants = [subprojects.build, // jQuery and Require.js enabled
-// 'tapestry-core:testWithJqueryAndRequireJsDisabled',
-// 'tapestry-core:testWithPrototypeAndRequireJsEnabled',
+ def dependants = [subprojects.build,
+ 'tapestry-core:testWithJqueryAndRequireJsDisabled',
+ 'tapestry-core:testWithPrototypeAndRequireJsEnabled',
'tapestry-core:testWithPrototypeAndRequireJsDisabled',
combinedJacocoReport]
if (JavaVersion.current() != JavaVersion.VERSION_1_8) {