Files
browser-wakatime/tests/helpers/currentTimestamp.spec.js
2015-06-14 00:31:22 +02:00

10 lines
280 B
JavaScript

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');
});
});