Skip to content
Closed
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions core/src/test/scala/org/apache/spark/ui/UISuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import scala.xml.Node

class UISuite extends FunSuite {

test("basic ui visibility") {
ignore("basic ui visibility") {
withSpark(new SparkContext("local", "test")) { sc =>
// test if the ui is visible, and all the expected tabs are visible
eventually(timeout(10 seconds), interval(50 milliseconds)) {
Expand All @@ -50,7 +50,7 @@ class UISuite extends FunSuite {
}
}

test("visibility at localhost:4040") {
ignore("visibility at localhost:4040") {
withSpark(new SparkContext("local", "test")) { sc =>
// test if visible from http://localhost:4040
eventually(timeout(10 seconds), interval(50 milliseconds)) {
Expand All @@ -60,7 +60,7 @@ class UISuite extends FunSuite {
}
}

test("attaching a new tab") {
ignore("attaching a new tab") {
withSpark(new SparkContext("local", "test")) { sc =>
val sparkUI = sc.ui

Expand Down