Nothing
.startMGR=function(openBrowser=FALSE, verbose=TRUE, ...) {
if (openBrowser) {
tryCatch(startEpiviz(localURL=getOption("epivizrTestURL"),
debug=getOption("epivizrTestDebug"),
daemonized=getOption("epivizrTestDaemonized"),
standalone=getOption("epivizrTestStandalone"),
port=getOption("epivizrTestPort"),
openBrowser=TRUE,
verbose=verbose, ...), interrupt=function(e) invisible())
} else {
startEpiviz(localURL=getOption("epivizrTestURL"),
debug=getOption("epivizrTestDebug"),
daemonized=getOption("epivizrTestDaemonized"),
standalone=getOption("epivizrTestStandalone"),
port=getOption("epivizrTestPort"),
openBrowser=FALSE,
verbose=verbose, ...)
}
}
wait_until <- function(condition, timeout=3) {
condition <- substitute(condition)
ptm <- proc.time()
while (!eval(condition, parent.frame()) && (proc.time() - ptm < timeout)["elapsed"]) {
Sys.sleep(0.001)
}
expect_true(eval(condition, parent.frame()))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.