mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
16 lines
641 B
TypeScript
16 lines
641 B
TypeScript
import { fromPartial } from '@total-typescript/shoehorn';
|
|
import type { ShortUrl } from '../../../src/short-urls/data';
|
|
import { createNewVisits } from '../../../src/visits/reducers/visitCreation';
|
|
import type { Visit } from '../../../src/visits/types';
|
|
|
|
describe('visitCreationReducer', () => {
|
|
describe('createNewVisits', () => {
|
|
const shortUrl = fromPartial<ShortUrl>({});
|
|
const visit = fromPartial<Visit>({});
|
|
|
|
it('just returns the action with proper type', () => {
|
|
const { payload } = createNewVisits([{ shortUrl, visit }]);
|
|
expect(payload).toEqual({ createdVisits: [{ shortUrl, visit }] });
|
|
});
|
|
});
|
|
});
|