Skip to content

Commit

Permalink
Remove bad test
Browse files Browse the repository at this point in the history
- This requires multiple nodes are present
  • Loading branch information
scroix committed Apr 7, 2024
1 parent ba41ae2 commit 29ae098
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions nodel-jyhost/src/test/java/org/nodel/PlaywrightTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,7 @@ public void testNodelAddElement() {
public void testListGroupItems() {
assertNotNull(page.querySelector(".list-group-item"), "list-group-item elements should be present");
}

@Test
public void testListGroupItemBorder() {
String border = page.evaluate("() => window.getComputedStyle(document.querySelector('.list-group-basic .list-group-item')).getPropertyValue('border')").toString();
assertEquals("none", border, "list-group-item elements should have border: none");
}


@Test
public void testNodelAddButtonMargin() {
String marginBottom = page.evaluate("() => window.getComputedStyle(document.querySelector('.nodel-add .btn')).getPropertyValue('margin-bottom')").toString();
Expand Down

0 comments on commit 29ae098

Please sign in to comment.