Created DeleteTagConfirmModal test

This commit is contained in:
Alejandro Celaya
2019-01-13 23:26:06 +01:00
parent 056286636d
commit 11d49fb70f
3 changed files with 92 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ describe('<CreateShortUrl />', () => {
const createShortUrl = sinon.spy();
beforeEach(() => {
const CreateShortUrl = createShortUrlsCreator(TagsSelector);
const CreateShortUrl = createShortUrlsCreator(TagsSelector, () => '');
wrapper = shallow(
<CreateShortUrl shortUrlCreationResult={shortUrlCreationResult} createShortUrl={createShortUrl} />