Skip to content

Commit

Permalink
Fix tests and pom settings
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasstein committed Jun 18, 2024
1 parent 7ab7df6 commit de94fff
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ gulp.task("run-tests",
function transportTestUrls() {
// transport test url to run-browser-tests
// eslint-disable-next-line max-len
const testsAt = mapappsBrowserSync.state.url + "/resources/jsregistry/root/@conterra/mapapps-mocha-runner/latest/mocha.html?boot=/js/tests/test-init.js&timeout=5000&test=sample_helloworld/tests/all&reporter=tap";
const testsAt = mapappsBrowserSync.state.url + "/resources/jsregistry/root/@conterra/mapapps-mocha-runner/latest/mocha.html?boot=/js/tests/test-init.js&timeout=5000&test=dn_querybuilder/tests/all&reporter=tap";
runBrowserTests.push(testsAt);
return Promise.resolve();
},
Expand Down
15 changes: 7 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.conterra.devnet</groupId>
<artifactId>mapapps-devnet-blueprint</artifactId>
<version>4.18.1</version>
<artifactId>mapapps-query-builder</artifactId>
<version>5.2.2-SNAPSHOT</version>
<packaging>jar</packaging>
<repositories>
<repository>
Expand Down Expand Up @@ -341,7 +341,7 @@
<properties>
<owner>con terra GmbH</owner>
<email>info@conterra.de</email>
<project.inceptionYear>2023</project.inceptionYear>
<project.inceptionYear>2024</project.inceptionYear>
</properties>
<includes>
<include>src/main/js/**/*.js</include>
Expand Down Expand Up @@ -492,10 +492,9 @@
</plugins>
</build>
<scm>
<connection>scm:git:https://github.com/conterra/mapapps-devnet-blueprint.git</connection>
<developerConnection>scm:git:https://github.com/conterra/mapapps-devnet-blueprint.git
</developerConnection>
<url>https://github.com/conterra/mapapps-devnet-blueprint</url>
<connection>scm:git:https://github.com/conterra/mapapps-query-builder.git</connection>
<developerConnection>scm:git:https://github.com/conterra/mapapps-query-builder.git</developerConnection>
<url>https://github.com/conterra/mapapps-query-builder</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
Expand Down Expand Up @@ -548,7 +547,7 @@
required -->
<mapapps.useChunkedRequestEncoding>true</mapapps.useChunkedRequestEncoding>
<!-- enable this if "upload" profile should only deploy bundles -->
<skip.apps.upload>false</skip.apps.upload>
<skip.apps.upload>true</skip.apps.upload>
<!-- enable this if "upload" profile should pre-optimize apps -->
<triggerPreOptimization>false</triggerPreOptimization>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion src/test/webapp/js/tests/runTests.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<html>
<head>
<title>Tests</title>
<meta http-equiv="REFRESH" content="0; url=../../../resources/jsregistry/root/@conterra/mapapps-mocha-runner/latest/mocha.html?boot=/js/tests/test-init.js&timeout=5000&test=sample_helloworld/tests/all"/>
<meta http-equiv="REFRESH" content="0; url=../../../resources/jsregistry/root/@conterra/mapapps-mocha-runner/latest/mocha.html?boot=/js/tests/test-init.js&timeout=5000&test=dn_querybuilder/tests/all"/>
</head>
<body>
Redirecting to test runner.
Expand Down

0 comments on commit de94fff

Please sign in to comment.