We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18deb67 commit fa24b7cCopy full SHA for fa24b7c
src/jvmTest/kotlin/BrowserlessRemoteIntegrationTests.kt
@@ -0,0 +1,11 @@
1
+class BrowserlessRemoteIntegrationTests : IntegrationTestBase() {
2
+
3
+ private val token = System.getenv("BROWSERLESS_API_TOKEN")
4
+ ?: error("BROWSERLESS_API_TOKEN environment variable is missing")
5
6
+ override val httpUrl: String
7
+ get() = "https://production-lon.browserless.io?token=${token}"
8
9
+ override val wsConnectUrl: String
10
+ get() = "wss://production-lon.browserless.io?token=${token}"
11
+}
0 commit comments