Skip to content
Snippets Groups Projects
Commit d270623e authored by Hallvard Trætteberg's avatar Hallvard Trætteberg
Browse files
parents 6827e171 ef7cf20e
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,10 @@ import static org.junit.jupiter.api.Assertions.assertTrue; ...@@ -17,7 +17,10 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail; import static org.junit.jupiter.api.Assertions.fail;
import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledIfEnvironmentVariable;
import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
import org.testfx.framework.junit5.ApplicationTest; import org.testfx.framework.junit5.ApplicationTest;
import org.testfx.util.WaitForAsyncUtils; import org.testfx.util.WaitForAsyncUtils;
import todolist.core.AbstractTodoList; import todolist.core.AbstractTodoList;
...@@ -116,7 +119,10 @@ public class TodoListControllerTest extends ApplicationTest { ...@@ -116,7 +119,10 @@ public class TodoListControllerTest extends ApplicationTest {
checkTodoListViewItems(item3, item1, newItem2); checkTodoListViewItems(item3, item1, newItem2);
} }
// @Test - virker ikke i gitpod /** Test - virker ikke i gitpod */
@Test
@DisplayName("Test dragging a ToDo list item")
@DisabledIfEnvironmentVariable(named = "GITPOD_WORKSPACE_ID", matches = ".*")
public void testDragTodoItem() { public void testDragTodoItem() {
Predicate<TodoItemListCell> draggableCell = cell -> cell.lookup(".label") != null; Predicate<TodoItemListCell> draggableCell = cell -> cell.lookup(".label") != null;
// drag the first item in the list view, which is the second item in the model // drag the first item in the list view, which is the second item in the model
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment