UNPKG

cbops

Version:

Cosmos DB Bulk Operations CLI, that can load objects from JSON files and create or upsert them, or delete items from Container, based on provided query.

13 lines (9 loc) 291 B
const { formatTime } = require('./format-time'); describe('formatTime', () => { it('should format time correctly', () => { const milliseconds = 3723000; const expected = '1h 2min 3s 0ms'; const result = formatTime(milliseconds); expect(result).toBe(expected); }); });