Skip to content

Commit

Permalink
chore: remove .only and console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
CJ42 committed Jun 27, 2024
1 parent db52578 commit efa426e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib/decodeData.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ describe('decodeData', () => {
expect(decodedData.name).to.eql('KeyOne');
});

it.only('parses type tuples/Mixed correctly', () => {
it('parses type tuples/Mixed correctly', () => {
const schema: ERC725JSONSchema = {
name: 'MyDynamicKey:<address>',
key: '0x',
Expand All @@ -192,8 +192,6 @@ describe('decodeData', () => {
[schema],
);

console.log('decodedData for tuple: ', decodedData);

expect(decodedData.value).to.eql(['0x11223344', 12]);
});

Expand Down

0 comments on commit efa426e

Please sign in to comment.