mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-24 12:49:19 +00:00
15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
import { assert } from "chai";
|
|
|
|
import formatDateTime from "../../../src/common/datetime/format_date_time";
|
|
|
|
describe("formatDateTime", () => {
|
|
const dateObj = new Date(2017, 10, 18, 11, 12, 13, 1400);
|
|
|
|
it("Formats English date times", () => {
|
|
assert.strictEqual(
|
|
formatDateTime(dateObj, "en"),
|
|
"November 18, 2017, 11:12 AM"
|
|
);
|
|
});
|
|
});
|