testing suite established

This commit is contained in:
Stephen Rodriguez
2015-06-10 02:10:32 -04:00
parent 0b5bb07819
commit 137a3f61fa
7 changed files with 99 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
var chai = require('chai');
var expect = chai.expect;
import changeExtensionIcon from '../../assets/js/helpers/changeExtensionIcon';
describe('changeExtensionIcon', function() {
it('should be a function', function() {
expect(changeExtensionIcon).to.be.a('function');
});
});

View File

@@ -0,0 +1,10 @@
var chai = require('chai');
var expect = chai.expect;
import currentTimestamp from '../../assets/js/helpers/currentTimestamp';
describe('currentTimestamp', function() {
it('should be a function', function() {
expect(currentTimestamp).to.be.a('function');
});
});