1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-12-10 02:45:59 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/kde/aasetting.pm
Adam Williamson 04fa379361 KDE apps_startstop: get rid of the akonadi notification
Signed-off-by: Adam Williamson <awilliam@redhat.com>
2025-10-14 12:27:38 -07:00

26 lines
556 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This sets the KDE desktop background to plain black, to avoid
# needle match problems caused by transparency.
sub run {
my $self = shift;
# FIXME: get rid of annoying akonadi notification that never goes
# away - https://bugzilla.redhat.com/show_bug.cgi?id=2403983
click_lastmatch if (check_screen 'akonadi_migration_notification');
solidify_wallpaper;
kde_doublek_workaround;
}
sub test_flags {
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: