Skip to content
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Web sockets for Solid",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./test/*.js"
"test": "./node_modules/mocha/bin/mocha ./test/*.js --exit"
},
"repository": {
"type": "git",
Expand Down
6 changes: 2 additions & 4 deletions test/websockets.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@ describe('Solid-ws', function() {
'/resource.ttl' ]
var users = [
'http://nicola.io/#me',
'http://timbl.com/#me',
'http://deiu.io/#me' ]
'http://timbl.com/#me' ]

var clients = users.map(function() {
return new WebSocket('http://localhost:' + port)
Expand All @@ -131,8 +130,7 @@ describe('Solid-ws', function() {
var url = 'http://example.com/resource.ttl'
var users = [
'http://nicola.io/#me',
'http://timbl.com/#me',
'http://deiu.io/#me' ]
'http://timbl.com/#me' ]

var clients = users.map(function() {
return new WebSocket('http://localhost:' + port)
Expand Down