Added tests for action-group

This commit is contained in:
Kir_Antipov 2024-01-09 11:22:17 +00:00
parent b35f5822ed
commit 3b0179991a

View file

@ -0,0 +1,7 @@
import { DEFAULT_ACTION_GROUP_DELIMITER } from "@/utils/actions/action-group";
describe("DEFAULT_ACTION_GROUP_DELIMITER", () => {
test("is defined", () => {
expect(typeof DEFAULT_ACTION_GROUP_DELIMITER).toBe("string");
});
});