Skip to content

Commit 7cfbfdb

Browse files
committed
Linting
1 parent aa5e744 commit 7cfbfdb

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

polaris-react/src/components/Backdrop/tests/Backdrop.test.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ describe('<Backdrop />', () => {
77
describe('onClick()', () => {
88
it('is called when the backdrop is clicked', () => {
99
const spy = jest.fn();
10-
const backdrop = mountWithApp(
11-
<Backdrop onClick={spy} />,
12-
);
10+
const backdrop = mountWithApp(<Backdrop onClick={spy} />);
1311
backdrop.find('div')!.trigger('onClick');
1412
expect(spy).toHaveBeenCalled();
1513
});
@@ -22,7 +20,7 @@ describe('<Backdrop />', () => {
2220
backdrop.find('div')!.trigger('onClick');
2321
expect(spy).toHaveBeenCalled();
2422
});
25-
})
23+
});
2624

2725
describe('onTouchStart()', () => {
2826
it('is called when the backdrop is touched', () => {

0 commit comments

Comments
 (0)