Skip to content

Commit 4cdf0a5

Browse files
committed
Skipping tests which were working by accident in the last implementation
1 parent 81006a0 commit 4cdf0a5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

packages/testkit-backend/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"build": "rollup src/index.js --config rollup.config.js",
1414
"start": "node -r esm src/index.js",
1515
"clean": "rm -fr node_modules public/index.js",
16-
"prepare": "npm run build"
16+
"prepare": "npm run build",
17+
"node": "node"
1718
},
1819
"repository": {
1920
"type": "git",

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ export function ResultConsume (context, data, wire) {
172172
const { resultId } = data
173173
const result = context.getResult(resultId)
174174
result.summary().then(summary => {
175-
console.log(summary);
176175
wire.writeResponse('Summary', {
177176
...summary,
178177
serverInfo: {

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ import skip, { ifEquals, ifEndsWith, ifStartsWith } from './skip'
22

33
const skippedTests = [
44
skip(
5-
'Not support by the JS driver',
6-
ifEquals('neo4j.sessionrun.TestSessionRun.test_partial_iteration')
5+
'Partial session iteration is not supported by the js driver',
6+
ifEquals('neo4j.sessionrun.TestSessionRun.test_partial_iteration'),
7+
ifEquals('neo4j.test_session_run.TestSessionRun.test_session_reuse'),
8+
ifEquals('neo4j.test_session_run.TestSessionRun.test_iteration_nested'),
79
),
810
skip(
911
'The driver has no support domain_name_resolver',

0 commit comments

Comments
 (0)