File tree 2 files changed +16
-1
lines changed
src/test/java/net/ravendb/client 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -371,7 +371,7 @@ protected void openBrowser(String url) {
371
371
Runtime runtime = Runtime .getRuntime ();
372
372
String osName = System .getProperty ("os.name" ).toLowerCase ();
373
373
boolean isMacOs = osName .contains ("mac" ) || osName .contains ("darwin" );
374
-
374
+
375
375
try {
376
376
if (isMacOs ) {
377
377
runtime .exec ("open " + url );
Original file line number Diff line number Diff line change
1
+ package net .ravendb .client .test .issues ;
2
+
3
+ import net .ravendb .client .RemoteTestBase ;
4
+ import net .ravendb .client .documents .IDocumentStore ;
5
+ import org .junit .jupiter .api .Test ;
6
+
7
+ public class RDBC_905 extends RemoteTestBase {
8
+
9
+ @ Test
10
+ public void canOpenBrowserOnMacOs () throws Exception {
11
+ try (IDocumentStore store = getDocumentStore ()) {
12
+ waitForUserToContinueTheTest (store );
13
+ }
14
+ }
15
+ }
You can’t perform that action at this time.
0 commit comments