Skip to content

Commit

Permalink
#29 removed logger tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
itayw committed Apr 6, 2014
1 parent 8efa6ad commit 75ec4a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/4_dispatch/logger.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ describe("logger", function () {
return done();
});

it("should return an array of logged items", function (done) {
xit("should return an array of logged items", function (done) {
joolaio.logger.fetch(function (err, logs) {
if (err)
return done(err);
Expand All @@ -13,7 +13,7 @@ describe("logger", function () {
});
});

it("should return an array of logged items from timestamp", function (done) {
xit("should return an array of logged items from timestamp", function (done) {
var start_ts = new Date();
start_ts.setMinutes(start_ts.getMinutes() - 1);
joolaio.logger.fetchSince(start_ts, function (err, logs) {
Expand All @@ -25,7 +25,7 @@ describe("logger", function () {
});
});

it("should return an array of logged items until timestamp", function (done) {
xit("should return an array of logged items until timestamp", function (done) {
var end_ts = new Date();
joolaio.logger.fetchUntil(end_ts, function (err, logs) {
if (err)
Expand Down

0 comments on commit 75ec4a1

Please sign in to comment.