1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| import { describe, expect, it } from 'vitest';
|
| import { shouldShowModalResizeHandle } from '../modal';
|
| describe('modal resize handle', () => {
| it('should hide resize handle when modal is fullscreen', () => {
| expect(
| shouldShowModalResizeHandle({
| footer: false,
| resizable: true,
| shouldFullscreen: true,
| showConfirmButton: false,
| }),
| ).toBe(false);
| });
|
| it('should hide resize handle when confirm button is visible', () => {
| expect(
| shouldShowModalResizeHandle({
| footer: true,
| resizable: true,
| shouldFullscreen: false,
| showConfirmButton: true,
| }),
| ).toBe(false);
| });
|
| it('should show resize handle only when the modal is resizable without fullscreen or visible confirm button', () => {
| expect(
| shouldShowModalResizeHandle({
| footer: false,
| resizable: true,
| shouldFullscreen: false,
| showConfirmButton: true,
| }),
| ).toBe(true);
|
| expect(
| shouldShowModalResizeHandle({
| footer: true,
| resizable: true,
| shouldFullscreen: false,
| showConfirmButton: false,
| }),
| ).toBe(true);
| });
| });
|
|