+
+
+
+
+
diff --git a/src/components/Form/mocks/field-credit-roles.js b/src/components/Form/mocks/field-credit-roles.js
new file mode 100644
index 000000000..5ff1d18c9
--- /dev/null
+++ b/src/components/Form/mocks/field-credit-roles.js
@@ -0,0 +1,36 @@
+export default {
+ name: 'contributor-credit-roles',
+ component: 'contributor-credit-roles',
+ value: [
+ {
+ role: 'https://credit.niso.org/contributor-roles/data-curation/',
+ degree: null,
+ },
+ ],
+ options: {
+ roles: [
+ {
+ label: 'Conceptualization',
+ value: 'https://credit.niso.org/contributor-roles/conceptualization/',
+ },
+ {
+ label: 'Data Curation',
+ value: 'https://credit.niso.org/contributor-roles/data-curation/',
+ },
+ {
+ label: 'Formal Analysis',
+ value: 'https://credit.niso.org/contributor-roles/formal-analysis/',
+ },
+ ],
+ degrees: [
+ {
+ label: '',
+ value: null,
+ },
+ {
+ label: 'LEAD',
+ value: 'LEAD',
+ },
+ ],
+ },
+};