Skip to content

Commit

Permalink
test(pubsub): remove from regression tests
Browse files Browse the repository at this point in the history
pubsub is still experimental and not part of M1
  • Loading branch information
silvolu committed Aug 22, 2014
1 parent 3297751 commit 7e58a05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 7e58a05

Please sign in to comment.