Skip to content

Commit

Permalink
test(ui): remove test for collect -> iterate validation
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Feb 5, 2025
1 parent 2c2ee7f commit 3e13249
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,6 @@ describe(validateConnectionTypes.name, () => {
});

describe('special cases', () => {
it('should reject a COLLECTION input to a COLLECTION input', () => {
const r = validateConnectionTypes(
{ name: 'CollectionField', cardinality: 'COLLECTION', batch: false },
{ name: 'CollectionField', cardinality: 'COLLECTION', batch: false }
);
expect(r).toBe(false);
});

it('should accept equal types', () => {
const r = validateConnectionTypes(
{ name: 'IntegerField', cardinality: 'SINGLE', batch: false },
Expand Down

0 comments on commit 3e13249

Please sign in to comment.