Skip to content

Commit

Permalink
Disable compression tests for js engine
Browse files Browse the repository at this point in the history
  • Loading branch information
bjhham committed Dec 16, 2024
1 parent a1ceac3 commit d1ee88c
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ class ContentEncodingTest : ClientLoader() {
}
}

// Note: JS is decompressed before hitting the client, so the response does not appear compressed
@Test
fun testDeflate() = clientTests(listOf("native:CIO")) {
fun testDeflate() = clientTests(listOf("native:CIO", "js")) {
config {
ContentEncoding {
deflate()
Expand All @@ -51,7 +52,7 @@ class ContentEncodingTest : ClientLoader() {
}

@Test
fun testGZip() = clientTests(listOf("native:CIO")) {
fun testGZip() = clientTests(listOf("native:CIO", "js")) {
config {
ContentEncoding {
gzip()
Expand All @@ -67,7 +68,7 @@ class ContentEncodingTest : ClientLoader() {
}

@Test
fun testGZipEmpty() = clientTests {
fun testGZipEmpty() = clientTests(listOf("js")) {
config {
ContentEncoding {
gzip()
Expand All @@ -82,7 +83,7 @@ class ContentEncodingTest : ClientLoader() {
}

@Test
fun testGzipByteArray() = clientTests {
fun testGzipByteArray() = clientTests(listOf("js")) {
config {
ContentEncoding {
gzip()
Expand Down

0 comments on commit d1ee88c

Please sign in to comment.