Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package com.ecwid.apiclient.v3.dto.order.enums

@Suppress("unused")
enum class ProductOptionType {
CHOICE,
SWATCH_CHOICE,
CHOICES,
TEXT,
DATE,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.ecwid.apiclient.v3.dto.subscriptions.enums
@Suppress("unused")
enum class ProductOptionType {
CHOICE,
SWATCH_CHOICE,
CHOICES,
TEXT,
DATE,
Expand Down
2 changes: 2 additions & 0 deletions src/test/kotlin/com/ecwid/apiclient/v3/entity/CartsTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class CartsTest : BaseEntityTest() {
}

@Test
@Disabled("Will be fixed in ECWID-162706")
fun testCreateAndGetCart() {
// Creating new cart
val testOrder = generateTestOrder()
Expand Down Expand Up @@ -203,6 +204,7 @@ class CartsTest : BaseEntityTest() {
}

@Test
@Disabled("Will be fixed in ECWID-162706")
fun testConvertCartToOrder() {
// Creating new cart
val testOrder = generateTestOrder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ class CategoriesTest : BaseEntityTest() {
}

@Test
@Disabled("Will be fixed in ECWID-162706")
fun testSearchUrls() {
// Create one category
val categoryCreateRequest = CategoryCreateRequest(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class OrdersTest : BaseEntityTest() {
}

@Test
@Disabled("Will be fixed in ECWID-162706")
fun testOrderLifecycle() {
// Creating new order
val orderCreateRequest = OrderCreateRequest(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ class ProductsTest : BaseEntityTest() {
}

@Test
@Disabled("Will be fixed in ECWID-162706")
fun testSearchUrls() {
// Create one product
val productCreateRequest = ProductCreateRequest(
Expand Down