Skip to content

Commit

Permalink
minors
Browse files Browse the repository at this point in the history
  • Loading branch information
ticup committed Oct 10, 2014
1 parent f20c8bc commit b58b942
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,3 +1,3 @@
language: node_js
node_js:
- "0.8"
- "0.10"
2 changes: 1 addition & 1 deletion example-assets/js/angular-cloudtypes.js
Expand Up @@ -90,7 +90,7 @@ angular
.service('$state', function ($window, $q, $client) {
var deferred = $q.defer();

$client.connect($window.location.hostname, 1000)
$client.connect($window.location.hostname, 100)
.onConnect(function (state) {
$window.State = state; // debug
deferred.resolve(state);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -18,7 +18,7 @@
"shortid": "*"
},
"devDependencies": {
"should": "*",
"should": "3.x.x",
"mocha": "*"
},
"optionalDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions test/Property.js
Expand Up @@ -89,9 +89,9 @@ describe('Property state independent operations', function () {
idxs.push(index);
});
idxs.length.should.equal(3);
idxs.should.include('[foo]');
idxs.should.include('[bar]');
idxs.should.include('[foobar]');
idxs.should.containEql('[foo]');
idxs.should.containEql('[bar]');
idxs.should.containEql('[foobar]');
});
});

Expand Down

0 comments on commit b58b942

Please sign in to comment.