Skip to content
This repository was archived by the owner on Feb 18, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion scripts/verify_included.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ find test \
-name '*.js' \
-not -path 'test/lib/*' \
-not -path 'test/time-series/constant-low-volume*' \
-not -path 'test/todo.js' \
-not -path 'test/index.js' \
-not -path 'test/reap-time.js' |
while read FILE; do
Expand Down
4 changes: 2 additions & 2 deletions test/hyperbahn-client/hostports.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function runTests(HyperbahnCluster) {
assert.end(err);
}
assert.ok(res, 'should be a result');
assert.ok(!res.ok, 'result should be not ok');
assert.ok(!res.ok, 'result should not be ok');
assert.equals(res.body.message, 'no peer available for matt', 'error message as expected');
assert.end();
}
Expand Down Expand Up @@ -156,7 +156,7 @@ function runTests(HyperbahnCluster) {
if (err) {
assert.end(err);
}
assert.ok(!res.ok, 'should be not ok');
assert.ok(!res.ok, 'should not be ok');
assert.equals(res.body.message, 'invalid service name: ', 'error message as expected');
assert.end();
}
Expand Down
39 changes: 0 additions & 39 deletions test/hyperbahn-client/todo.js

This file was deleted.

1 change: 0 additions & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ require('./hosts/no-body.js');
require('./hosts/missing-service-name.js');
require('./hosts/invalid-service-name.js');

require('./hyperbahn-client/todo.js');
require('./hyperbahn-client/kill-switch.js');
require('./hyperbahn-client/egress-nodes.js');

Expand Down
39 changes: 0 additions & 39 deletions test/todo.js

This file was deleted.