mirror of
https://github.com/apache/superset.git
synced 2026-04-20 08:34:37 +00:00
Improve time shift (#5140)
* Improve time shift color and pattern * Revert change * Fix js unit test * Move code to better place, add unit test * Move classed code to backend * Remove console.log * Remove 1 hour time compare * Remove unused import
This commit is contained in:
committed by
Maxime Beauchemin
parent
0545d11a22
commit
57e125688f
@@ -20,9 +20,9 @@ describe('nvd3 viz', () => {
|
||||
expect(formatLabel(['foo'], verboseMap)).to.equal('Foo');
|
||||
expect(formatLabel(['foo', 'bar', 'baz'], verboseMap)).to.equal('Foo, Bar, baz');
|
||||
});
|
||||
it('deals with --- properly', () => {
|
||||
expect(formatLabel(['foo', '---'], verboseMap)).to.equal('Foo ---');
|
||||
expect(formatLabel(['foo', 'bar', 'baz', '---'], verboseMap)).to.equal('Foo, Bar, baz ---');
|
||||
it('deals with time shift properly', () => {
|
||||
expect(formatLabel(['foo', '1 hour offset'], verboseMap)).to.equal('Foo, 1 hour offset');
|
||||
expect(formatLabel(['foo', 'bar', 'baz', '2 hours offset'], verboseMap)).to.equal('Foo, Bar, baz, 2 hours offset');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user