Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data browser fix #4898

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ import org.scalatest.{ Matchers, WordSpec }
import org.slf4j.LoggerFactory
import slick.basic.DatabaseConfig
import slick.jdbc.JdbcProfile
import akka.util.Timeout
import scala.concurrent.duration._
import akka.http.scaladsl.testkit.RouteTestTimeout



class DataBrowserIntegrationSpec
extends WordSpec
Expand Down Expand Up @@ -47,6 +52,9 @@ class DataBrowserIntegrationSpec

val routes: Route = DataBrowserHttpApi.create(log, fileStorage, query, healthCheck)

implicit val timeout: Timeout = Timeout(120.seconds)
implicit def routeTestTimeout = RouteTestTimeout(timeout.duration)

"Data Browser" must {
"respond to health checks" in {
(healthCheck.healthCheckStatus _).expects().returns(Task.now(HealthCheckResponse(Up, Up, Up)))
Expand Down
Loading