mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
e2a927ee52
* test: migrate part of Notification tests * test: migrate part of Notification tests * test: migrate part of Notification tests * test: migrate part of Notification tests
56 lines
1.2 KiB
TypeScript
56 lines
1.2 KiB
TypeScript
import notification, { getInstance } from '..';
|
|
import { sleep, act } from '../../../tests/utils';
|
|
|
|
describe('notification.config', () => {
|
|
beforeEach(() => {
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
afterAll(() => {
|
|
notification.destroy();
|
|
});
|
|
|
|
it('should be able to config maxCount', async () => {
|
|
notification.config({
|
|
maxCount: 5,
|
|
duration: 0.5,
|
|
});
|
|
|
|
for (let i = 0; i < 10; i += 1) {
|
|
act(() => {
|
|
notification.open({
|
|
message: 'Notification message',
|
|
key: i as unknown as string,
|
|
});
|
|
});
|
|
}
|
|
|
|
act(() => {
|
|
notification.open({
|
|
message: 'Notification last',
|
|
key: '11',
|
|
});
|
|
});
|
|
|
|
await act(async () => {
|
|
await Promise.resolve();
|
|
});
|
|
|
|
expect(document.querySelectorAll('.ant-notification-notice').length).toBe(5);
|
|
expect(document.querySelectorAll('.ant-notification-notice')[4]?.textContent).toBe(
|
|
'Notification last',
|
|
);
|
|
|
|
act(() => {
|
|
jest.runAllTimers();
|
|
});
|
|
|
|
await act(async () => {
|
|
await sleep(500);
|
|
});
|
|
expect((await getInstance('ant-notification-topRight'))?.component.state.notices).toHaveLength(
|
|
0,
|
|
);
|
|
});
|
|
});
|