File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
packages/testkit-backend/src Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ export default class Protocol extends EventEmitter {
61
61
}
62
62
63
63
serializeResponse ( response ) {
64
- console . log ( '> writing response' , response )
65
64
const responseStr = stringify ( response )
65
+ console . log ( '> writing response' , responseStr )
66
66
return [ '#response begin' , responseStr , '#response end' ] . join ( '\n' ) + '\n'
67
67
}
68
68
Original file line number Diff line number Diff line change 1
1
import skip , { ifEquals , ifEndsWith } from './skip'
2
2
3
3
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
+ ) ,
4
10
skip (
5
11
'Skipped because server doesn\'t support protocol 5.0 yet' ,
6
12
ifEndsWith ( 'neo4j.test_summary.TestSummary.test_protocol_version_information' )
You can’t perform that action at this time.
0 commit comments