Skip to content

Commit

Permalink
remove extra test
Browse files Browse the repository at this point in the history
  • Loading branch information
abrantesarthur committed Jan 11, 2025
1 parent c0e9d26 commit 930a1ba
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/helpers/tests/createDefaultCodec.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import chai, { expect } from 'chai';
import deepEqualInAnyOrder from 'deep-equal-in-any-order';

import { createDefaultCodec } from '../createDefaultCodec';
import { OneTrustAssessmentQuestionResponseCodec } from '../../oneTrust/codecs';

chai.use(deepEqualInAnyOrder);

Expand Down Expand Up @@ -98,11 +97,4 @@ describe('buildDefaultCodec', () => {
// should default to the first value if the union does not contains null
expect(result).to.deep.equalInAnyOrder({ id: '', name: '', age: null });
});
it.only('should correctly build a default codec for an intersection', () => {
const result = createDefaultCodec(
t.array(OneTrustAssessmentQuestionResponseCodec),
);

console.log({ result: JSON.stringify(result, null, 2) });
});
});

0 comments on commit 930a1ba

Please sign in to comment.