All Downloads are FREE. Search and download functionalities are using the official Maven repository.

japgolly.scalajs.react.test.ReactTestUtilsConfig.scala Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta8
Show newest version
package japgolly.scalajs.react.test

import japgolly.scalajs.react.test.internal._

object ReactTestUtilsConfig extends ReactTestUtilsConfigTypes {

  object aroundReact extends AroundReact {

    private def default: AroundReact =
      ReactTestUtilsConfigMacros.aroundReact

    private var value: AroundReact =
      default

    def get: AroundReact =
      value

    def set(v: AroundReact): Unit =
      value = v

    override def start(): () => Unit =
      value.start()
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy