Skip to content

Commit 18c649d

Browse files
committed
testkit-backend: Add Temporary:FastFailingDiscovery and Temporary:ResultKeys features
Most of the tests in `Temporary:FastFailingDiscovery` are skipped and they will be evaluated afterwards
1 parent c54329a commit 18c649d

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

packages/testkit-backend/src/request-handlers.js

+2
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,8 @@ export function GetFeatures (_context, _params, wire) {
370370
'Feature:API:Result.List',
371371
'Feature:API:Result.Peek',
372372
'Temporary:ConnectionAcquisitionTimeout',
373+
'Temporary:FastFailingDiscovery',
374+
'Temporary:ResultKeys',
373375
'Temporary:TransactionClose',
374376
'Temporary:CypherPathAndRelationship',
375377
'Temporary:DriverFetchSize',

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

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
import skip, { ifEquals, ifEndsWith, ifStartsWith } from './skip'
22

33
const skippedTests = [
4+
skip(
5+
'Fail while enable Temporary:FastFailingDiscovery',
6+
ifEndsWith('test_should_request_rt_from_all_initial_routers_until_successful_on_authorization_expired'),
7+
ifEndsWith('test_should_request_rt_from_all_initial_routers_until_successful_on_unknown_failure'),
8+
ifEndsWith('test_should_fail_with_routing_failure_on_any_security_discovery_failure'),
9+
ifEndsWith('test_should_fail_with_routing_failure_on_invalid_bookmark_mixture_discovery_failure'),
10+
ifEndsWith('test_should_fail_with_routing_failure_on_invalid_bookmark_discovery_failure'),
11+
ifEndsWith('test_should_fail_with_routing_failure_on_forbidden_discovery_failure')
12+
),
413
skip(
514
'Flaky in TeamCity',
615
ifEndsWith('test_should_fail_when_writing_to_unexpectedly_interrupting_writers_on_run_using_tx_function'),

0 commit comments

Comments
 (0)