Skip to content

Commit 7b55cdc

Browse files
authored
fix: Update tests for Summer'25 main app release (#50)
1 parent 42f91ee commit 7b55cdc

20 files changed

+65
-28
lines changed

.forceignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
**/__utam__/**
2-
**/jsconfig.json
2+
**/jsconfig.json
3+
**/.eslintrc.json

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ log.out
4343
**/.classpath
4444
**/.settings
4545
**/utam-lint.sarif
46+
**/pageObjectManifest.json

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ UI Test Automation Model (UTAM) is based on the popular Page Object model design
66

77
This repository is a Maven project with examples of UTAM compiler setup and UI tests written with UTAM.
88

9-
The project uses Java 11 and Maven 4.
9+
The project uses Java 17 and Maven 4.
1010

1111
1. Clone the repository and install the Maven project.
1212

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
</modules>
1515

1616
<properties>
17-
<utam.framework.version>2.0.8</utam.framework.version>
18-
<salesforce.pageobjects.version>6.0.0</salesforce.pageobjects.version>
17+
<utam.framework.version>4.0.3</utam.framework.version>
18+
<salesforce.pageobjects.version>10.0.2</salesforce.pageobjects.version>
1919
<maven.compiler.source>11</maven.compiler.source>
2020
<maven.compiler.target>11</maven.compiler.target>
2121
</properties>

utam-preview/src/main/resources/compiler.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"module": "preview",
3-
"pageObjectsRootDir": "/src/main/resources/spec",
3+
"pageObjectsRootDir": "/src/main/resources/utam",
44
"pageObjectsFilesMask": "(.*)\\.utam\\.json$",
55
"pageObjectsOutputDir": "/src/main/java",
66
"resourcesOutputDir": "/src/main/resources",
@@ -24,7 +24,7 @@
2424
},
2525
{
2626
"typeMatch": "utam-sfdx",
27-
"pathMatch": ".*/force-app"
27+
"pathMatch": ".*/sfdx"
2828
},
2929
{
3030
"typeMatch": "utam-portal",

utam-preview/src/main/resources/spec/portal/dummy.utam.json renamed to utam-preview/src/main/resources/utam/portal/dummy.utam.json

File renamed without changes.

utam-preview/src/main/resources/spec/portal/nullableExample.utam.json renamed to utam-preview/src/main/resources/utam/portal/nullableExample.utam.json

File renamed without changes.

utam-preview/src/main/resources/spec/portal/utamDevHome.utam.json renamed to utam-preview/src/main/resources/utam/portal/utamDevHome.utam.json

File renamed without changes.

utam-preview/src/main/resources/spec/force-app/appFlexipage.utam.json renamed to utam-preview/src/main/resources/utam/sfdx/appFlexipage.utam.json

File renamed without changes.

utam-preview/src/main/resources/spec/force-app/hello.utam.json renamed to utam-preview/src/main/resources/utam/sfdx/hello.utam.json

File renamed without changes.

0 commit comments

Comments
 (0)