Update storyshot

This commit is contained in:
hypnos 2017-11-06 15:38:02 +03:00
parent d3cd28544a
commit 1b60f29a6f

View File

@ -0,0 +1,88 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Storyshots Addon Links.Button First 1`] = `
<button
onClick={[Function]}
>
Go to "Second"
</button>
`;
exports[`Storyshots Addon Links.Button Second 1`] = `
<button
onClick={[Function]}
>
Go to "First"
</button>
`;
exports[`Storyshots Addon Links.Href log 1`] = `
<span>
See action logger
</span>
`;
exports[`Storyshots Addon Links.Link First 1`] = `
<a
href="/"
onClick={[Function]}
>
Go to Second
</a>
`;
exports[`Storyshots Addon Links.Link Second 1`] = `
<a
href="/"
onClick={[Function]}
>
Go to First
</a>
`;
exports[`Storyshots Addon Links.Select First 1`] = `
<a
href="/"
onClick={[Function]}
>
Go back
</a>
`;
exports[`Storyshots Addon Links.Select Index 1`] = `
<select
onChange={[Function]}
value="Index"
>
<option>
Index
</option>
<option>
First
</option>
<option>
Second
</option>
<option>
Third
</option>
</select>
`;
exports[`Storyshots Addon Links.Select Second 1`] = `
<a
href="/"
onClick={[Function]}
>
Go back
</a>
`;
exports[`Storyshots Addon Links.Select Third 1`] = `
<a
href="/"
onClick={[Function]}
>
Go back
</a>
`;