Skip to content

Commit 10095dd

Browse files
author
Max Presman
committed
verbose log on access tests
1 parent 3ed7462 commit 10095dd

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

dist/web/pubnub.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -5472,7 +5472,7 @@ return /******/ (function(modules) { // webpackBootstrap
54725472
"noAnalyze": false,
54735473
"devDependencies": {
54745474
"babel-core": "^6.10.4",
5475-
"babel-eslint": "6.1.2",
5475+
"babel-eslint": "6.1.0",
54765476
"babel-plugin-add-module-exports": "^0.2.1",
54775477
"babel-plugin-transform-class-properties": "^6.10.2",
54785478
"babel-plugin-transform-flow-strip-types": "^6.8.0",
@@ -5482,21 +5482,21 @@ return /******/ (function(modules) { // webpackBootstrap
54825482
"eslint-config-airbnb": "9.0.1",
54835483
"eslint-plugin-flowtype": "2.3.1",
54845484
"eslint-plugin-import": "^1.9.2",
5485-
"eslint-plugin-mocha": "4.1.0",
5485+
"eslint-plugin-mocha": "3.0.0",
54865486
"eslint-plugin-react": "5.2.2",
54875487
"flow-bin": "^0.29.0",
54885488
"gulp": "^3.9.1",
54895489
"gulp-babel": "^6.1.2",
54905490
"gulp-clean": "^0.3.2",
5491-
"gulp-eslint": "^3.0.1",
5491+
"gulp-eslint": "^2.0.0",
54925492
"gulp-exec": "^2.1.2",
54935493
"gulp-flowtype": "^0.4.9",
5494+
"gulp-gzip": "^1.4.0",
54945495
"gulp-istanbul": "^1.0.0",
54955496
"gulp-mocha": "^2.2.0",
54965497
"gulp-rename": "^1.2.2",
54975498
"gulp-sourcemaps": "^1.6.0",
54985499
"gulp-uglify": "^1.5.4",
5499-
"gulp-webpack": "^1.5.0",
55005500
"imports-loader": "0.6.5",
55015501
"isparta": "^4.0.0",
55025502
"json-loader": "0.5.4",
@@ -5516,7 +5516,8 @@ return /******/ (function(modules) { // webpackBootstrap
55165516
"stats-webpack-plugin": "^0.4.0",
55175517
"uglify-js": "^2.6.4",
55185518
"webpack": "^1.13.1",
5519-
"webpack-dev-server": "1.14.1"
5519+
"webpack-dev-server": "1.14.1",
5520+
"webpack-stream": "^3.2.0"
55205521
},
55215522
"bundleDependencies": [],
55225523
"license": "MIT",

dist/web/pubnub.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/web/stats.json

+1-1
Large diffs are not rendered by default.

test/integration/endpoints/access.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('access endpoints', () => {
2323

2424
beforeEach(() => {
2525
nock.cleanAll();
26-
pubnub = new PubNub({ subscribeKey: 'mySubscribeKey', publishKey: 'myPublishKey', secretKey: 'mySecretKey', uuid: 'myUUID' });
26+
pubnub = new PubNub({ subscribeKey: 'mySubscribeKey', publishKey: 'myPublishKey', secretKey: 'mySecretKey', uuid: 'myUUID', logVerbosity: true });
2727
pubnub._config.baseParams.pnsdk = 'PubNub-JS-Nodejs/suchJavascript';
2828
});
2929

0 commit comments

Comments
 (0)