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