Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update general path for test process #6

Merged
merged 51 commits into from
Mar 15, 2024
Merged
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
ccc556d
Initial commit
ndkhanh-axonivy Jan 11, 2024
6189f03
product-name
ndkhanh-axonivy Jan 11, 2024
45b1b2c
Initial project setup
ndkhanh-axonivy Jan 11, 2024
0a8b5dd
Init project
ndkhanh-axonivy Jan 22, 2024
137d599
Update chart listener
ndkhanh-axonivy Jan 23, 2024
4b8d8cf
Update pom
khanhnd17 Jan 23, 2024
36df516
Merge branch 'master' of https://github.com/ndkhanh-axonivy/open-weat…
khanhnd17 Jan 23, 2024
2be3e86
Fill real data to UI
ndkhanh-axonivy Jan 25, 2024
e564c37
Update forecast weather
ndkhanh-axonivy Jan 26, 2024
a6842b5
Merge branch 'master' of https://github.com/ndkhanh-axonivy/open-weat…
khanhnd17 Jan 27, 2024
4a8f782
Add action for UI
khanhnd17 Jan 28, 2024
67a6914
Update panChart
ndkhanh-axonivy Jan 29, 2024
ed062e2
Refactor code
ndkhanh-axonivy Feb 2, 2024
e7be950
refactor html
ndkhanh-axonivy Feb 4, 2024
54f54c1
Update new chart pop
ndkhanh-axonivy Feb 14, 2024
c9562e9
update converter feature
ndkhanh-axonivy Feb 17, 2024
785fa45
Refactor
ndkhanh-axonivy Feb 18, 2024
46d8c66
Enhance UI
ndkhanh-axonivy Feb 20, 2024
6be6ddc
Update feature pan chart when first time switch to another tab
ndkhanh-axonivy Feb 20, 2024
c99987a
remove unused comment
ndkhanh-axonivy Feb 20, 2024
9ed75bc
Add AuthFeature and update README.md
ndkhanh-axonivy Feb 21, 2024
735f22a
Update README.md
ndkhanh-axonivy Feb 21, 2024
8f180cc
Merge branch 'master' of https://github.com/ndkhanh-axonivy/open-weat…
ndkhanh-axonivy Feb 22, 2024
85421d6
Remove Product project sample
ndkhanh-axonivy Feb 22, 2024
436dceb
Update variable file
ndkhanh-axonivy Feb 22, 2024
0b6c7d3
Update precipitation chart
ndkhanh-axonivy Feb 23, 2024
7d78b3a
Update test process for weather geo
ndkhanh-axonivy Feb 23, 2024
220cb1e
Update unit test for ivy process
ndkhanh-axonivy Mar 5, 2024
85e0584
Merge branch 'master' of https://github.com/ndkhanh-axonivy/open-weat…
ndkhanh-axonivy Mar 5, 2024
2e9833f
Reformat process UI
ndkhanh-axonivy Mar 5, 2024
ba02436
Rename formatted to postfix name
ndkhanh-axonivy Mar 5, 2024
566f07f
Remove appId value in demo project
ndkhanh-axonivy Mar 5, 2024
20e7c79
Update groupId in product project
ndkhanh-axonivy Mar 5, 2024
c699ddb
Update README with how to get api key
ndkhanh-axonivy Mar 5, 2024
f615a8c
Refactor variable name
ndkhanh-axonivy Mar 5, 2024
800b493
Remove hard string and update cms
ndkhanh-axonivy Mar 5, 2024
7a22a50
Add dark theme
ndkhanh-axonivy Mar 6, 2024
d6dcc92
Update dark mode theme
ndkhanh-axonivy Mar 6, 2024
a5d0651
Remove unused function
ndkhanh-axonivy Mar 7, 2024
4fc2815
Delete unused images
ndkhanh-axonivy Mar 7, 2024
7f6b690
Update README.md
ndkhanh-axonivy Mar 12, 2024
75fb460
Delete open-weather-connector-product/images/forecast-sub-process.png
ndkhanh-axonivy Mar 12, 2024
619d6f6
Handle feedbacks
ndkhanh-axonivy Mar 12, 2024
bede198
Fix unit test errors
ndkhanh-axonivy Mar 13, 2024
9bb1062
Handle feedbacks
ndkhanh-axonivy Mar 14, 2024
a389fd6
Add custom for Units
ndkhanh-axonivy Mar 14, 2024
2217bd7
Update latest ivy-environment same as project version
ndkhanh-axonivy Mar 14, 2024
c3d169a
Merge branch 'develop' of https://github.com/axonivy-market/open-weat…
ndkhanh-axonivy Mar 14, 2024
cb835bc
Update version for ivy test project
ndkhanh-axonivy Mar 14, 2024
3f8efdb
Update general path for test process
ndkhanh-axonivy Mar 15, 2024
a085756
Merge branch 'develop' of https://github.com/axonivy-market/open-weat…
ndkhanh-axonivy Mar 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import ch.ivyteam.ivy.bpm.exec.client.IvyProcessTest;
import ch.ivyteam.ivy.environment.AppFixture;

@IvyProcessTest
@IvyProcessTest(enableWebServer = true)
public class BaseProcessTest {

@BeforeEach
Expand All @@ -15,7 +15,7 @@ void beforeEach(AppFixture fixture) {
"ch.ivyteam.ivy.rest.client.mapper.JsonFeature");
fixture.config("RestClients.GeocodingCoordinates (Openweathermap geocoding API).Features",
"ch.ivyteam.ivy.rest.client.mapper.JsonFeature");
fixture.var("openWeatherConnector.weatherDataUrl", "http://localhost:8081/designer/api/weatherDataMock");
fixture.var("openWeatherConnector.weatherGeoUrl", "http://localhost:8081/designer/api/weatherGeoMock");
fixture.var("openWeatherConnector.weatherDataUrl", "{ivy.app.baseurl}/api/weatherDataMock");
fixture.var("openWeatherConnector.weatherGeoUrl", "{ivy.app.baseurl}/api/weatherGeoMock");
}
}
Loading