From 67988a25d83fc10b187fcc821c3ceacfad0195d5 Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Sun, 11 Mar 2018 15:47:35 -0400 Subject: Fix/notification sound (#763) * Update dependencies * Update theme * Fix bad css merge * Add notification feedback for fetching now * Hide notif settings that no longer work with channels * Wip android o channels * Revert back to old group method * Update dependencies * Update rxnetwork version --- .../test/kotlin/com/pitchedapps/frost/debugger/OfflineWebsiteTest.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/src/test/kotlin/com/pitchedapps/frost/debugger') diff --git a/app/src/test/kotlin/com/pitchedapps/frost/debugger/OfflineWebsiteTest.kt b/app/src/test/kotlin/com/pitchedapps/frost/debugger/OfflineWebsiteTest.kt index 63c11bac..9fbb6069 100644 --- a/app/src/test/kotlin/com/pitchedapps/frost/debugger/OfflineWebsiteTest.kt +++ b/app/src/test/kotlin/com/pitchedapps/frost/debugger/OfflineWebsiteTest.kt @@ -14,7 +14,8 @@ class OfflineWebsiteTest { @Test fun basic() { val countdown = CountDownLatch(1) - OfflineWebsite(FB_URL_BASE, COOKIE, File("app/build/offline_test")) + val buildPath = if (File(".").parentFile?.name == "app") "build/offline_test" else "app/build/offline_test" + OfflineWebsite(FB_URL_BASE, COOKIE, File(buildPath)) .loadAndZip("test") { println("Outcome $it") countdown.countDown() -- cgit v1.2.3