mirror of
https://github.com/home-assistant/frontend.git
synced 2026-05-08 17:28:46 +01:00
34bfc12647
* Add prettier * Apply Prettier
13 lines
417 B
JavaScript
13 lines
417 B
JavaScript
import { assert } from "chai";
|
|
|
|
import secondsToDuration from "../../../src/common/datetime/seconds_to_duration.js";
|
|
|
|
describe("secondsToDuration", () => {
|
|
it("works", () => {
|
|
assert.strictEqual(secondsToDuration(0), null);
|
|
assert.strictEqual(secondsToDuration(65), "1:05");
|
|
assert.strictEqual(secondsToDuration(3665), "1:01:05");
|
|
assert.strictEqual(secondsToDuration(39665), "11:01:05");
|
|
});
|
|
});
|