deployment-tools
Version:
A Node.js scripts that helps you to compile and deploy the static assets (CSS/JavaScript/images) of your website without gulp and grunt using Node.js and npm scripts
11 lines (9 loc) • 433 B
JavaScript
import test from 'blue-tape';
import { getDateString, format } from '../../src/libs/time';
/** @test {time} */
test('time utility', assert => {
assert.equal(typeof format, 'function', 'format should be a function');
assert.equal(typeof getDateString, 'function', 'getDateString should be a function');
assert.equal(format(new Date(2016, 5, 19, 10, 0, 0)), '10:00:00', 'should be equal to 10:00:00');
assert.end();
});