cal/packages/lib/getBrandColours.test.ts
Leo Giovanetti 734382b5b3
refactor: Moving from jest to vitest (#9035)
* Moving to vitest

* Rearranging test

* Fixing prettier linting

* Reverting launch.json

* Adjustments

* Merged with main and regenerated lockfile

* Fixing tests for API

* Yarn updated, docs is gone

---------

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Co-authored-by: zomars <zomars@me.com>
Co-authored-by: Alex van Andel <me@alexvanandel.com>
2023-05-24 23:35:44 +00:00

42 lines
1.0 KiB
TypeScript

import { describe, expect, it } from "vitest";
import { createColorMap } from "./getBrandColours";
describe("useGetBrandingColours", () => {
it("should return the correct color values for given lightVal and darkVal", () => {
const expectedResult = {
light: {
"50": "#fff3f3",
"100": "#ffe8e8",
"200": "#ffc5c5",
"300": "#ffa2a2",
"400": "#ff5c5c",
"500": "#ff1616",
"600": "#e61414",
"700": "#bf1111",
"800": "#990d0d",
"900": "#7d0b0b",
},
dark: {
"50": "#f2f5ff",
"100": "#e6ecff",
"200": "#bfcfff",
"300": "#99b3ff",
"400": "#4d79ff",
"500": "#0040ff",
"600": "#003ae6",
"700": "#0030bf",
"800": "#002699",
"900": "#001f7d",
},
// ...
};
const lightMap = createColorMap("#ff1616");
const darkMap = createColorMap("#0040ff");
expect(lightMap).toEqual(expectedResult.light);
expect(darkMap).toEqual(expectedResult.dark);
});
});