Skip to content

Commit

Permalink
Update release.test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxPresman committed Jul 23, 2016
1 parent d1fcfee commit ea85070
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/release/release.test.js
Expand Up @@ -27,10 +27,10 @@ describe('release should be consistent', () => {
});

it('with updated readme', () => {
assert(readMe.indexOf('http://cdn.pubnub.com/sdk/javascript/pubnub-' + versionFile + '.js') > 1);
assert(readMe.indexOf('http://cdn.pubnub.com/sdk/javascript/pubnub-' + versionFile + '.min.js') > 1);
assert(readMe.indexOf('http://cdn.pubnub.com/sdk/javascript/pubnub.' + versionFile + '.js') > 1);
assert(readMe.indexOf('http://cdn.pubnub.com/sdk/javascript/pubnub.' + versionFile + '.min.js') > 1);

assert(readMe.indexOf('https://cdn.pubnub.com/sdk/javascript/pubnub-' + versionFile + '.js') > 1);
assert(readMe.indexOf('https://cdn.pubnub.com/sdk/javascript/pubnub-' + versionFile + '.min.js') > 1);
assert(readMe.indexOf('https://cdn.pubnub.com/sdk/javascript/pubnub.' + versionFile + '.js') > 1);
assert(readMe.indexOf('https://cdn.pubnub.com/sdk/javascript/pubnub.' + versionFile + '.min.js') > 1);
});
});

0 comments on commit ea85070

Please sign in to comment.