Skip to content

Commit 98e93a2

Browse files
committed
Merge remote-tracking branch 'origin/dev' into feature/issue271
2 parents a035b2b + 474e6cb commit 98e93a2

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
id 'jacoco'
1818
}
1919

20-
version "7.2-java17-SNAPSHOT"
20+
version "7.3-java17-SNAPSHOT"
2121
group "org.grails.plugins"
2222

2323
apply plugin:"eclipse"

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@atlasoflivingaustralia/ecodata-client-plugin",
3-
"version": "6.2.0",
3+
"version": "7.3.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/AtlasOfLivingAustralia/ecodata-client-plugin.git"
@@ -21,7 +21,7 @@
2121
"@turf/convex": "^6.0.2",
2222
"@turf/length": "^6.0.2",
2323
"@turf/simplify": "^5.1.5",
24-
"chromedriver": "^133.0.1",
24+
"chromedriver": "^133.0.2",
2525
"geojson2svg": "^1.2.3",
2626
"handlebars": "^4.7.7",
2727
"jasmine-ajax": "^4.0.0",

src/integration-test/groovy/au/org/ala/ecodata/forms/ComputedValuesSpec.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class ComputedValuesSpec extends GebReportingSpec {
5656

5757
and: "the validation should have triggered"
5858
waitFor{ page.findValidationElementForModelName("item2").displayed }
59-
page.findValidationElementForModelName("item2").children('.formErrorContent').text() == "test message"
59+
page.findValidationElementForModelName("item2").children('.formErrorContent').getAttribute('innerText') == "test message"
6060

6161
when:
6262
page.findFieldByModelName("item1").getAt(0).value("0")

src/integration-test/groovy/pages/PreviewPage.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class PreviewPage extends Page {
8787

8888
boolean isWarningDisplayed(String warning) {
8989
waitFor {
90-
$('.popover.warning .popover-body').text() == warning
90+
$('.popover.warning .popover-body').getAttribute('innerText') == warning
9191
}
9292
}
9393

0 commit comments

Comments
 (0)