Skip to content

Commit 9d58fa6

Browse files
authored
Skip new summary tests on RX session (#1262)
1 parent 976e404 commit 9d58fa6

File tree

1 file changed

+11
-1
lines changed
  • packages/testkit-backend/src/skipped-tests

1 file changed

+11
-1
lines changed

packages/testkit-backend/src/skipped-tests/rx.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
1-
import { skip, ifEquals } from './skip.js'
1+
import { skip, ifEquals, ifStartsWith } from './skip.js'
22

33
const skippedTests = [
44
skip(
55
'Throws after run insted of the first next because of the backend implementation',
66
ifEquals('stub.disconnects.test_disconnects.TestDisconnects.test_disconnect_on_tx_begin')
7+
),
8+
skip(
9+
'Reactive driver does not send DISCARD on consume if records stream has been subscribed to',
10+
ifStartsWith('stub.summary.test_summary.TestSummaryPlanDiscard'),
11+
ifStartsWith('stub.summary.test_summary.TestSummaryCountersDiscard'),
12+
ifStartsWith('stub.summary.test_summary.TestSummaryBasicInfoDiscard'),
13+
ifStartsWith('stub.summary.test_summary.TestSummaryGqlStatusObjects4x4Discard'),
14+
ifStartsWith('stub.summary.test_summary.TestSummaryGqlStatusObjects5x6Discard'),
15+
ifStartsWith('stub.summary.test_summary.TestSummaryNotifications4x4Discard'),
16+
ifStartsWith('stub.summary.test_summary.TestSummaryNotifications5x6Discard')
717
)
818
]
919

0 commit comments

Comments
 (0)