Skip to content

Commit dc35068

Browse files
committed
Skipe deprecated tests
1 parent fc5ba48 commit dc35068

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

packages/testkit-backend/src/channel/testkit-protocol.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ export default class Protocol extends EventEmitter {
6161
}
6262

6363
serializeResponse (response) {
64-
console.log('> writing response', response)
6564
const responseStr = stringify(response)
65+
console.log('> writing response', responseStr)
6666
return ['#response begin', responseStr, '#response end'].join('\n') + '\n'
6767
}
6868

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
import skip, { ifEquals, ifEndsWith } from './skip'
22

33
const skippedTests = [
4+
skip(
5+
'Testkit implemenation is deprecated',
6+
ifEquals('stub.basic_query.test_basic_query.TestBasicQuery.test_5x0_populates_node_only_element_id'),
7+
ifEquals('stub.basic_query.test_basic_query.TestBasicQuery.test_5x0_populates_path_element_ids_with_only_string'),
8+
ifEquals('stub.basic_query.test_basic_query.TestBasicQuery.test_5x0_populates_rel_only_element_id')
9+
),
410
skip(
511
'Skipped because server doesn\'t support protocol 5.0 yet',
612
ifEndsWith('neo4j.test_summary.TestSummary.test_protocol_version_information')

0 commit comments

Comments
 (0)