Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit ed03888

Browse files
committed
Updated tests
1 parent c009893 commit ed03888

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"mongoose": ">=4.11.8"
5555
},
5656
"scripts": {
57-
"test": "STREAM_URL='https://key:[email protected]/?app_id=42' NODE_ENV=test ./node_modules/.bin/mocha test test/**/*_test.js",
57+
"test": "STREAM_URL='https://key:[email protected]/?app_id=42' NODE_ENV=test ./node_modules/.bin/mocha --timeout 15000 test test/**/*_test.js",
5858
"coverage": "STREAM_URL='https://key:[email protected]/?app_id=42' ./node_modules/.bin/istanbul cover bin/run-tests.js",
5959
"preversion": "npm test",
6060
"postversion": "git push && git push --tags"

test/backends/base_test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('Base Backend', function() {
3535

3636
expect(refs).to.eql({
3737
User: ['123456'],
38-
Tweet: ['00001'],
38+
Tweet: ['00001']
3939
});
4040
});
4141

@@ -50,7 +50,7 @@ describe('Base Backend', function() {
5050

5151
expect(refs).to.eql({
5252
User: ['123456'],
53-
Tweet: ['00001', '00002'],
53+
Tweet: ['00001', '00002']
5454
});
5555
});
5656
});
@@ -69,7 +69,7 @@ describe('Base Backend', function() {
6969
expect(activity).to.eql({
7070
actor: 'User:123456',
7171
object: 'Tweet:1',
72-
other: 'matthisk',
72+
other: 'matthisk'
7373
});
7474
});
7575

0 commit comments

Comments
 (0)