Skip to content

Commit

Permalink
Disable failing timefilter calculateBounds tests (#44330)
Browse files Browse the repository at this point in the history
#44308

Signed-off-by: Tyler Smalley <[email protected]>
  • Loading branch information
Tyler Smalley authored Aug 28, 2019
1 parent d3761c2 commit ce2ba6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/legacy/ui/public/timefilter/timefilter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ describe('calculateBounds', () => {
expect(result.max && result.max.valueOf()).to.eql(clockNowTicks);
});

test('uses forceNow string', () => {
test.skip('uses forceNow string', () => {
const timeRange = {
from: 'now-15m',
to: 'now',
Expand All @@ -329,7 +329,7 @@ describe('calculateBounds', () => {
expect(result.max && result.max.valueOf()).to.eql(forceNowTicks);
});

test(`throws Error if forceNow can't be parsed`, () => {
test.skip(`throws Error if forceNow can't be parsed`, () => {
const timeRange = {
from: 'now-15m',
to: 'now',
Expand Down

0 comments on commit ce2ba6d

Please sign in to comment.