mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fixed failing unit test
This commit is contained in:
parent
9fc91b7aa1
commit
3435aaea45
@ -86,7 +86,7 @@ define([
|
|||||||
|
|
||||||
it('should restore refresh after relative time range is set', function() {
|
it('should restore refresh after relative time range is set', function() {
|
||||||
_dashboard.refresh = '10s';
|
_dashboard.refresh = '10s';
|
||||||
ctx.service.setTime({from: '2011-01-01', to: '2015-01-01' });
|
ctx.service.setTime({from: moment([2011,1,1]), to: moment([2015,1,1])});
|
||||||
expect(_dashboard.refresh).to.be(false);
|
expect(_dashboard.refresh).to.be(false);
|
||||||
ctx.service.setTime({from: '2011-01-01', to: 'now' });
|
ctx.service.setTime({from: '2011-01-01', to: 'now' });
|
||||||
expect(_dashboard.refresh).to.be('10s');
|
expect(_dashboard.refresh).to.be('10s');
|
||||||
|
Loading…
Reference in New Issue
Block a user