Skip to content

Commit

Permalink
fileTypes are not required
Browse files Browse the repository at this point in the history
  • Loading branch information
rushtong committed Oct 17, 2023
1 parent 91ee75f commit 1589056
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ const formData = {
'dataSubmitterUserId': 1,
'nihAnvilUse': 'I am not NHGRI funded and do not plan to store data in AnVIL',
'consentGroups': [{
'fileTypes': [{
'fileType': 'Arrays',
'functionalEquivalence': 'equivalence'
}],
'numberOfParticipants': 2,
'consentGroupName': 'name',
'generalResearchUse': true,
Expand All @@ -29,8 +25,8 @@ const formData = {
let schema = undefined;

beforeEach(function () {
cy.fixture('dataset-registration-v1').then(function (schemaData) {
schema = schemaData;
cy.fixture('dataset-registration-v1').then(function (data) {
schema = data;
});
});

Expand Down

0 comments on commit 1589056

Please sign in to comment.