Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable graphql-client quickstart tests for now #1486

Merged
merged 1 commit into from
Jan 8, 2025
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,8 +1,10 @@
package org.acme.microprofile.graphql.client;

import io.quarkus.test.junit.QuarkusIntegrationTest;
import org.junit.jupiter.api.Disabled;

@QuarkusIntegrationTest
@Disabled("Blocked by https://github.com/quarkusio/quarkus/issues/45334")
public class GraphQLClientIT extends GraphQLClientTest {

}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.acme.microprofile.graphql.client;

import io.quarkus.test.junit.QuarkusTest;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.util.List;
Expand All @@ -9,6 +10,7 @@
import static org.junit.jupiter.api.Assertions.assertTrue;

@QuarkusTest
@Disabled("Blocked by https://github.com/quarkusio/quarkus/issues/45334")
public class GraphQLClientTest {

@Test
Expand Down
Loading