Skip to content

Commit 7343298

Browse files
committed
test: fix test case
1 parent b5003e4 commit 7343298

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/portal.spec.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe('Dialog.Portal', () => {
2020
it('event should bubble', () => {
2121
const onClose = jest.fn();
2222

23-
const { container } = render(
23+
render(
2424
<Dialog onClose={onClose} visible>
2525
<Select virtual={false} open>
2626
<Select.Option value="bamboo">Bamboo</Select.Option>
@@ -30,25 +30,25 @@ describe('Dialog.Portal', () => {
3030

3131
jest.runAllTimers();
3232

33-
fireEvent.mouseDown(container.querySelector('.rc-dialog-section'));
34-
fireEvent.click(container.querySelector('.rc-select-item-option-content'));
35-
fireEvent.mouseUp(container.querySelector('.rc-dialog-section'));
33+
fireEvent.mouseDown(document.querySelector('.rc-dialog-section'));
34+
fireEvent.click(document.querySelector('.rc-select-item-option-content'));
35+
fireEvent.mouseUp(document.querySelector('.rc-dialog-section'));
3636
expect(onClose).not.toHaveBeenCalled();
3737
});
3838

3939
it('dialog dont close when mouseDown in content and mouseUp in wrap', () => {
4040
const onClose = jest.fn();
4141

42-
const { container } = render(
42+
render(
4343
<Dialog onClose={onClose} visible>
4444
content
4545
</Dialog>,
4646
);
4747

4848
jest.runAllTimers();
4949

50-
fireEvent.mouseDown(container.querySelector('.rc-dialog-section'));
51-
fireEvent.mouseUp(container.querySelector('.rc-dialog-wrap'));
50+
fireEvent.mouseDown(document.querySelector('.rc-dialog-section'));
51+
fireEvent.mouseUp(document.querySelector('.rc-dialog-wrap'));
5252
expect(onClose).not.toHaveBeenCalled();
5353
});
5454
});

0 commit comments

Comments
 (0)