Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed May 14, 2024
1 parent ca3b3bf commit 8024879
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if (needSplittingFromWorkspace) {
}

def axes = [
jenkinsVersions: ['lts', 'latest'],
jenkinsVersions: ['latest'],
platforms: ['linux'],
jdks: [11, 21],
browsers: ['firefox'],
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
<properties>
<changelist>999999-SNAPSHOT</changelist>
<spotbugs.skip>true</spotbugs.skip>
<jenkins.version>2.448</jenkins.version>
<!-- TODO https://github.com/jenkinsci/jenkins/pull/9259 -->
<jenkins.version>2.459-rc34936.a_7da_ec399619</jenkins.version>
<selenium.version>4.18.1</selenium.version>
<guava.version>33.0.0-jre</guava.version> <!-- aligned with selenium -->
<maven.version>3.8.1</maven.version>
Expand Down
3 changes: 2 additions & 1 deletion src/test/java/core/CreateItemTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ public void duplicate_item_name_displays_error() {
assertTrue(find(EXISTING_NAME_MSG).isDisplayed());

final WebElement okButtonElement = find(OK_BUTTON);
assertTrue(okButtonElement.isEnabled());
// TODO JENKINS-73034
//assertFalse(okButtonElement.isEnabled());

okButtonElement.click();
assertThat(driver, hasContent(JOB_CREATION_ERROR_MSG));
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/core/FreestyleJobTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void should_visit_build_with_permalink() {
b.open();
assertThat("Permalink link is current URL", driver.getCurrentUrl(), is(expectedUrl));
assertThat("Build number is correct", b.getNumber(), is(1));
assertThat("Build has no changes", driver, hasContent("No changes"));
assertThat("Changes section is visible", driver, hasContent("Changes"));
assertThat("Build is success", b.getResult(), is(Build.Result.SUCCESS.name()));
}

Expand Down

0 comments on commit 8024879

Please sign in to comment.