We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12e4acc commit af950eaCopy full SHA for af950ea
packages/components/src/components/Address/Address.test.tsx
@@ -8,10 +8,8 @@ describe('Address', () => {
8
const { container } = render(<Address value='taylorswift.eth' shortened={false} />);
9
expect(container).toBeInTheDocument();
10
});
11
-});
12
-
13
-describe('Shortened Address', () => {
14
- it('check the length of the address', () => {
+
+ it('checks the length of the address when shortened', () => {
15
const { container } = render(<Address value='0x00000000000000' shortened />);
16
const addressInput = container.querySelector('input') as HTMLInputElement;
17
expect(addressInput).toHaveValue('0x00...0000');
0 commit comments