## Summary
Manually skipping test from
https://github.com/elastic/kibana/issues/186996 - it's going to stay
flaky, as it's depending on the `new Date()`s hitting the same second.
This commit is contained in:
Alex Szabo 2024-08-14 08:56:44 +02:00 committed by GitHub
parent be26e46116
commit e73f68867b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,8 @@ import { TestProvidersComponent } from '../mocks/test_providers';
import { UpdateStatus } from './update_status';
describe('<UpdateStatus />', () => {
it('should render Updated now', () => {
// Flaky: https://github.com/elastic/kibana/issues/186996
it.skip('should render Updated now', () => {
const result = render(<UpdateStatus updatedAt={Date.now()} isUpdating={false} />, {
wrapper: TestProvidersComponent,
});