Skip to content

Commit

Permalink
TestKit: skip new tests that need fixes in the driver (#1109)
Browse files Browse the repository at this point in the history
Adjustment for new tests and assertions added in neo4j-drivers/testkit#574
  • Loading branch information
bigmontz committed Jul 6, 2023
1 parent 7fe7720 commit 33f587d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/testkit-backend/src/skipped-tests/common.js
@@ -1,6 +1,15 @@
import skip, { ifEquals, ifEndsWith, endsWith, ifStartsWith, startsWith, not } from './skip.js'

const skippedTests = [
skip(
"Fixme: transactions don't prevent further actions after failure.",
ifEquals('stub.tx_run.test_tx_run.TestTxRun.test_should_prevent_discard_after_tx_termination_on_run'),
ifEquals('stub.tx_run.test_tx_run.TestTxRun.test_should_prevent_pull_after_tx_termination_on_pull'),
ifEquals('stub.tx_run.test_tx_run.TestTxRun.test_should_prevent_pull_after_tx_termination_on_run'),
ifEquals('stub.tx_run.test_tx_run.TestTxRun.test_should_prevent_run_after_tx_termination_on_run'),
ifEquals('stub.tx_run.test_tx_run.TestTxRun.test_should_prevent_run_after_tx_termination_on_pull'),
ifEquals('stub.configuration_hints.test_connection_recv_timeout_seconds.TestDirectConnectionRecvTimeout.test_timeout_unmanaged_tx_should_fail_subsequent_usage_after_timeout')
),
skip(
'Driver does not return offset for old DateTime implementations',
ifStartsWith('stub.types.test_temporal_types.TestTemporalTypes')
Expand Down

0 comments on commit 33f587d

Please sign in to comment.