File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
packages/testkit-backend/src/skipped-tests Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
- import { skip , ifEquals } from './skip.js'
1
+ import { skip , ifEquals , ifStartsWith } from './skip.js'
2
2
3
3
const skippedTests = [
4
4
skip (
5
5
'Throws after run insted of the first next because of the backend implementation' ,
6
6
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' )
7
17
)
8
18
]
9
19
You can’t perform that action at this time.
0 commit comments