Skip to content

Commit b2373cb

Browse files
committed
Increase test coverage
1 parent f9f4a9c commit b2373cb

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed

src/alert/__tests__/alert.test.tsx

+31
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@ jest.mock('../../../lib/components/internal/hooks/use-visual-mode', () => ({
1818
useVisualRefresh: jest.fn().mockReturnValue(false),
1919
}));
2020

21+
let mockElementOffsetLeft = 200;
22+
23+
Object.defineProperties(window.HTMLElement.prototype, {
24+
offsetLeft: {
25+
configurable: true,
26+
enumerable: true,
27+
get() {
28+
return mockElementOffsetLeft;
29+
},
30+
},
31+
});
32+
2133
function renderAlert(props: AlertProps = {}) {
2234
const { container } = render(<Alert {...props} />);
2335
return { wrapper: createWrapper(container).findAlert()!, container };
@@ -33,6 +45,7 @@ const i18nStrings: AlertProps.I18nStrings = {
3345

3446
beforeEach(() => {
3547
jest.mocked(useVisualRefresh).mockReset();
48+
mockElementOffsetLeft = 200;
3649
});
3750

3851
describe('Alert Component', () => {
@@ -139,6 +152,24 @@ describe('Alert Component', () => {
139152
expect(wrapper.findActionSlot()!.findButton()!.getElement()).toHaveTextContent('Click');
140153
});
141154

155+
it('adds wrapped class to actions if they are displayed on a new line', () => {
156+
mockElementOffsetLeft = 10;
157+
const { container } = renderAlert({
158+
children: 'Message body',
159+
action: <Button>Click</Button>,
160+
});
161+
expect(container.querySelector(`.${styles['action-wrapped']}`)).toBeTruthy();
162+
});
163+
164+
it('does not add wrapped class to actions if they are displayed on same line', () => {
165+
mockElementOffsetLeft = 200;
166+
const { container } = renderAlert({
167+
children: 'Message body',
168+
action: <Button>Click</Button>,
169+
});
170+
expect(container.querySelector(`.${styles['action-wrapped']}`)).toBeFalsy();
171+
});
172+
142173
it('when both `buttonText` and `action` provided, prefers the latter', () => {
143174
const { wrapper } = renderAlert({
144175
children: 'Message body',

src/flashbar/__tests__/flashbar.test.tsx

+31
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,27 @@ jest.mock('../../../lib/components/internal/hooks/use-visual-mode', () => {
2525
};
2626
});
2727

28+
let mockElementOffsetLeft = 200;
29+
Object.defineProperties(window.HTMLElement.prototype, {
30+
offsetLeft: {
31+
configurable: true,
32+
enumerable: true,
33+
get() {
34+
return mockElementOffsetLeft;
35+
},
36+
},
37+
});
38+
2839
LiveRegionController.defaultDelay = 0;
2940

3041
mockInnerText();
3142

3243
const noop = () => void 0;
3344

45+
beforeEach(() => {
46+
mockElementOffsetLeft = 200;
47+
});
48+
3449
let consoleWarnSpy: jest.SpyInstance;
3550
afterEach(() => {
3651
consoleWarnSpy?.mockRestore();
@@ -265,6 +280,22 @@ describe('Flashbar component', () => {
265280
expect(wrapper.findItems()[0].findAction()!.findButton()!.getElement()).toHaveTextContent('Click me');
266281
});
267282

283+
it('adds wrapped class to actions if they are displayed on a new line', () => {
284+
mockElementOffsetLeft = 10;
285+
const { container } = reactRender(
286+
<Flashbar items={[{ header: 'The header', content: 'The content', action: <Button>Click me</Button> }]} />
287+
);
288+
expect(container.querySelector(`.${styles['action-wrapped']}`)).toBeTruthy();
289+
});
290+
291+
it('does not add wrapped class to actions if they are displayed on same line', () => {
292+
mockElementOffsetLeft = 200;
293+
const { container } = reactRender(
294+
<Flashbar items={[{ header: 'The header', content: 'The content', action: <Button>Click me</Button> }]} />
295+
);
296+
expect(container.querySelector(`.${styles['action-wrapped']}`)).toBeFalsy();
297+
});
298+
268299
test('when both `buttonText` and `action` provided, prefers the latter', () => {
269300
const wrapper = createFlashbarWrapper(
270301
<Flashbar

0 commit comments

Comments
 (0)