diff --git a/.codeclimate.yml b/.codeclimate.yml index 4fe69490c..2da321387 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -5,6 +5,11 @@ engines: enabled: false eslint: enabled: true + checks: + import/extensions: + enabled: false + import/no-extraneous-dependencies: + enabled: false config: config: superset/assets/.eslintrc pep8: diff --git a/superset/assets/javascripts/modules/dates.js b/superset/assets/javascripts/modules/dates.js index 81dd9177e..449e1ba26 100644 --- a/superset/assets/javascripts/modules/dates.js +++ b/superset/assets/javascripts/modules/dates.js @@ -105,4 +105,3 @@ export const epochTimeXYearsAgo = function (y) { .utc() .valueOf(); }; - diff --git a/superset/assets/spec/javascripts/modules/dates_spec.js b/superset/assets/spec/javascripts/modules/dates_spec.js new file mode 100644 index 000000000..c16c7cb27 --- /dev/null +++ b/superset/assets/spec/javascripts/modules/dates_spec.js @@ -0,0 +1,85 @@ +import { it, describe } from 'mocha'; +import { expect } from 'chai'; +import { + tickMultiFormat, + formatDate, + timeFormatFactory, + fDuration, + now, + epochTimeXHoursAgo, + epochTimeXDaysAgo, + epochTimeXYearsAgo, + } from '../../../javascripts/modules/dates'; + +describe('tickMultiFormat', () => { + it('is a function', () => { + assert.isFunction(tickMultiFormat); + }); +}); + +describe('formatDate', () => { + it('is a function', () => { + assert.isFunction(formatDate); + }); +}); + +describe('timeFormatFactory', () => { + it('is a function', () => { + assert.isFunction(timeFormatFactory); + }); +}); + +describe('fDuration', () => { + it('is a function', () => { + assert.isFunction(fDuration); + }); + + it('returns a string', () => { + expect(fDuration(new Date(), new Date())).to.be.a('string'); + }); + + it('returns the expected output', () => { + const output = fDuration('1496293608897', '1496293623406'); + expect(output).to.equal('00:00:14.50'); + }); +}); + +describe('now', () => { + it('is a function', () => { + assert.isFunction(now); + }); + + it('returns a number', () => { + expect(now()).to.be.a('number'); + }); +}); + +describe('epochTimeXHoursAgo', () => { + it('is a function', () => { + assert.isFunction(epochTimeXHoursAgo); + }); + + it('returns a number', () => { + expect(epochTimeXHoursAgo(1)).to.be.a('number'); + }); +}); + +describe('epochTimeXDaysAgo', () => { + it('is a function', () => { + assert.isFunction(epochTimeXDaysAgo); + }); + + it('returns a number', () => { + expect(epochTimeXDaysAgo(1)).to.be.a('number'); + }); +}); + +describe('epochTimeXYearsAgo', () => { + it('is a function', () => { + assert.isFunction(epochTimeXYearsAgo); + }); + + it('returns a number', () => { + expect(epochTimeXYearsAgo(1)).to.be.a('number'); + }); +});