File tree Expand file tree Collapse file tree
src/test/kotlin/failchat/twitch Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import failchat.testObjectMapper
88import failchat.twitchEmoticonUrlFactory
99import io.kotest.matchers.shouldNotBe
1010import kotlinx.coroutines.runBlocking
11+ import org.junit.Ignore
1112import org.junit.Test
1213import org.slf4j.Logger
1314import org.slf4j.LoggerFactory
@@ -36,6 +37,7 @@ class TwitchApiClientTest {
3637 )
3738
3839 @Test
40+ @Ignore
3941 fun requestUserIdTest () {
4042 userNameToId.forEach { (name, expectedId) ->
4143 val actualId = apiClient.getUserId(name).join()
@@ -44,6 +46,7 @@ class TwitchApiClientTest {
4446 }
4547
4648 @Test
49+ @Ignore
4750 fun requestViewersCountTest () {
4851 userNameToId.forEach { (_, id) ->
4952 try {
@@ -55,6 +58,7 @@ class TwitchApiClientTest {
5558 }
5659
5760 @Test
61+ @Ignore
5862 fun getCommonEmoticonsTest () {
5963 val emoticons = apiClient.getCommonEmoticons().join()
6064 emoticons shouldNotBe 0
You can’t perform that action at this time.
0 commit comments