chore: add additional addon-jest examples

This commit is contained in:
Dominic Lee 2020-12-29 13:57:56 +00:00
parent e23f2d5593
commit b5ea3158d0
No known key found for this signature in database
GPG Key ID: 6D6D13B7A38673EE

View File

@ -10,3 +10,8 @@ export default {
export const WithTests = () => <p>Hello</p>;
WithTests.parameters = { jest: 'addon-jest' };
export const WithInferredTests = () => <p>Inferred Tests</p>;
export const DisabledTests = () => <p>Disabled Tests</p>;
WithTests.parameters = { jest: { disabled: true } };