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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
"lint": "jshint lib/ regression/ test/",
"test": "mocha --recursive --reporter spec",
"regression-test": "mocha regression/ --reporter spec --timeout 15000",
"cover": "istanbul cover -x 'regression/*' _mocha -- --timeout 10000 test/* regression/*",
"coveralls": "istanbul cover -x 'regression/*' _mocha --report lcovonly -- --timeout 10000 test/* regression/* -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
"cover": "istanbul cover -x 'regression/* lib/pubsub/*' _mocha -- --timeout 15000 test/* regression/*",
"coveralls": "istanbul cover -x 'regression/* lib/pubsub/*' _mocha --report lcovonly -- --timeout 15000 test/* regression/* -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"license": "Apache 2"
}
4 changes: 2 additions & 2 deletions regression/pubsub.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ before(function(done) {
});
});

describe('Topic', function() {
describe.skip('Topic', function() {
it('should be listed', function(done) {
conn.listTopics(function(err, topics) {
assert(topics.length, 3);
Expand Down Expand Up @@ -95,7 +95,7 @@ describe('Topic', function() {
});
});

describe('Subscription', function() {
describe.skip('Subscription', function() {
before(function(done) {
var createFn = function(item, callback) {
conn.createSubscription({
Expand Down