You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
49 lines
1.3 KiB
import * as React from 'react';
|
|
import Modal from '..';
|
|
import { render, waitFakeTimer } from '../../../tests/utils';
|
|
import ConfigProvider from '../../config-provider';
|
|
import { resetWarned } from '../../_util/warning';
|
|
|
|
describe('Modal.confirm warning', () => {
|
|
beforeEach(() => {
|
|
jest.useFakeTimers();
|
|
resetWarned();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
Modal.destroyAll();
|
|
|
|
await waitFakeTimer();
|
|
document.body.innerHTML = '';
|
|
jest.clearAllTimers();
|
|
});
|
|
|
|
// Follow test need keep order
|
|
it('no warning', async () => {
|
|
const errSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
Modal.confirm({
|
|
content: <div className="bamboo" />,
|
|
});
|
|
await waitFakeTimer();
|
|
|
|
expect(document.querySelector('.bamboo')).toBeTruthy();
|
|
|
|
expect(errSpy).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('warning if use theme', async () => {
|
|
const errSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
render(<ConfigProvider theme={{}} />);
|
|
|
|
Modal.confirm({
|
|
content: <div className="light" />,
|
|
});
|
|
await waitFakeTimer();
|
|
|
|
expect(document.querySelector('.light')).toBeTruthy();
|
|
|
|
expect(errSpy).toHaveBeenCalledWith(
|
|
"Warning: [antd: Modal] Static function can not consume context like dynamic theme. Please use 'App' component instead.",
|
|
);
|
|
});
|
|
});
|
|
|