Skip to content
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
12 changes: 11 additions & 1 deletion packages/testkit-backend/src/skipped-tests/rx.js
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Smells like a regex, glob matcher, or similar predicate could simplify the code a little. No blocker though.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the idea, but it'd take a rewrite of the skipping part that would make this significantly bigger PR. Worth putting on my backlog, though!

Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
import { skip, ifEquals } from './skip.js'
import { skip, ifEquals, ifStartsWith } from './skip.js'

const skippedTests = [
skip(
'Throws after run insted of the first next because of the backend implementation',
ifEquals('stub.disconnects.test_disconnects.TestDisconnects.test_disconnect_on_tx_begin')
),
skip(
'Reactive driver does not send DISCARD on consume if records stream has been subscribed to',
ifStartsWith('stub.summary.test_summary.TestSummaryPlanDiscard'),
ifStartsWith('stub.summary.test_summary.TestSummaryCountersDiscard'),
ifStartsWith('stub.summary.test_summary.TestSummaryBasicInfoDiscard'),
ifStartsWith('stub.summary.test_summary.TestSummaryGqlStatusObjects4x4Discard'),
ifStartsWith('stub.summary.test_summary.TestSummaryGqlStatusObjects5x6Discard'),
ifStartsWith('stub.summary.test_summary.TestSummaryNotifications4x4Discard'),
ifStartsWith('stub.summary.test_summary.TestSummaryNotifications5x6Discard')
)
]

Expand Down