1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-13 11:17:26 +02:00
unleash.unleash/frontend/src/hooks/usePinnedFavorites.test.ts
Gastón Fournier abe160eb7d
feat: Unleash v7 ESM migration (#9877)
We're migrating to ESM, which will allow us to import the latest
versions of our dependencies.

Co-Authored-By: Christopher Kolstad <chriswk@getunleash.io>
2025-05-14 09:47:12 +02:00

48 lines
1.3 KiB
TypeScript

import type { Row } from 'react-table';
import { sortTypesWithFavorites } from './usePinnedFavorites.js';
const data = [
{
id: 1,
favorite: true,
},
{
id: 2,
favorite: false,
},
{
id: 3,
favorite: true,
},
{
id: 4,
favorite: false,
},
{
id: 5,
favorite: false,
},
].map((d) => ({ values: d, original: d })) as unknown as Row<object>[];
test('puts favorite items first', () => {
const output = data.sort((a, b) =>
sortTypesWithFavorites.alphanumeric(a, b, 'id'),
);
const ids = output.map(({ values: { id } }) => id);
const favorites = output.map(({ values: { favorite } }) => favorite);
expect(ids).toEqual([1, 3, 2, 4, 5]);
expect(favorites).toEqual([true, true, false, false, false]);
});
test('in descending order put favorites last (react-table will reverse order)', () => {
const output = data.sort((a, b) =>
sortTypesWithFavorites.alphanumeric(a, b, 'id', true),
);
const ids = output.map(({ values: { id } }) => id);
const favorites = output.map(({ values: { favorite } }) => favorite);
expect(ids).toEqual([2, 4, 5, 1, 3]);
expect(favorites).toEqual([false, false, false, true, true]);
});