Skip to content

Commit

Permalink
clean console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrouid committed Apr 2, 2020
1 parent 342ed2d commit bda2f2c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ describe('blockies', () => {
it('should generate from ethereum address', () => {
const address = '0x8B7B2b4F7A391b6f14A81221AE0920a9735B67Fc';
const imgSrc = blockies.create({ seed: address }).toDataURL();
console.log('imgSrc', imgSrc);
expect(imgSrc).toBeTruthy();
});
});

describe('utils', () => {
it('should create image date successfully', () => {
it('should create image data successfully', () => {
const imgData = blockies.createImageData(blockies.DEFAULT_SIZE);
console.log('imgData', imgData);
expect(imgData).toBeTruthy();
});
});

0 comments on commit bda2f2c

Please sign in to comment.