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

always skip incremental delivery e2e for now #3784

Merged
merged 1 commit into from
Sep 15, 2024
Merged
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
8 changes: 4 additions & 4 deletions packages/graphiql/cypress/e2e/incremental-delivery.cy.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { version } from 'graphql';

Check failure on line 1 in packages/graphiql/cypress/e2e/incremental-delivery.cy.ts

View workflow job for this annotation

GitHub Actions / ESLint

'version' is defined but never used. Allowed unused vars must match /^React$/u

let describeOrSkip: Mocha.SuiteFunction | Mocha.PendingSuiteFunction = describe;
// TODO: add support to graphql-http for IncrementalDelivery first
// if (parseInt(version, 10) < 17) {

if (parseInt(version, 10) < 17) {
// TODO: add support to graphql-http for IncrementalDelivery first
// describeOrSkip = describe.skip;
}
describeOrSkip = describe.skip;
// }

describeOrSkip('IncrementalDelivery support via fetcher', () => {
describe('When operation contains @stream', () => {
Expand Down
Loading