Skip to content

Commit

Permalink
Merge branch 'master' into 1872-upgrade-node-18
Browse files Browse the repository at this point in the history
  • Loading branch information
sopa301 committed Feb 18, 2024
2 parents 813f7f2 + d2018d2 commit c9e3c18
Show file tree
Hide file tree
Showing 12 changed files with 745 additions and 158 deletions.
11 changes: 11 additions & 0 deletions frontend/cypress/tests/chartView/chartView_zoomFeature.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,9 @@ describe('range changes in chartview should reflect in zoom', () => {
cy.get('div.mui-textfield.search_box > input:visible')
.should('be.visible')
.type('jamessspanggg');
cy.get('input[name="until"]:visible')
.type('2023-12-31');

cy.get('body').type(zoomKey, { release: false })
.get('#summary-charts .summary-chart__ramp .ramp')
.first()
Expand All @@ -277,6 +280,9 @@ describe('range changes in chartview should reflect in zoom', () => {
cy.get('div.mui-textfield.search_box > input:visible')
.should('be.visible')
.type('jamessspanggg');
cy.get('input[name="until"]:visible')
.type('2023-12-31');

cy.get('body').type(zoomKey, { release: false })
.get('#summary-charts .summary-chart__ramp .ramp')
.first()
Expand All @@ -303,6 +309,9 @@ describe('range changes in chartview should reflect in zoom', () => {
cy.get('div.mui-textfield.search_box > input:visible')
.should('be.visible')
.type('jamessspanggg');
cy.get('input[name="until"]:visible')
.type('2023-12-31');

cy.get('body').type(zoomKey, { release: false })
.get('#summary-charts .summary-chart__ramp .ramp')
.first()
Expand All @@ -329,6 +338,8 @@ describe('range changes in chartview should reflect in zoom', () => {
cy.get('div.mui-textfield.search_box > input:visible')
.should('be.visible')
.type('jamessspanggg');
cy.get('input[name="until"]:visible')
.type('2023-12-31');

cy.get('body').type(zoomKey, { release: false })
.get('#summary-charts .summary-chart__ramp .ramp')
Expand Down
6 changes: 5 additions & 1 deletion src/main/java/reposense/model/CliRunConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ public List<RepoConfiguration> getRepoConfigurations() throws ParseException {
List<RepoConfiguration> configs = new ArrayList<>();
for (String locationString : cliArguments.getLocations()) {
try {
configs.add(new RepoConfiguration(new RepoLocation(locationString)));
configs.add(
new RepoConfiguration.Builder()
.location(new RepoLocation(locationString))
.build()
);
} catch (InvalidLocationException ile) {
logger.log(Level.WARNING, ile.getMessage(), ile);
}
Expand Down
Loading

0 comments on commit c9e3c18

Please sign in to comment.