os-autoinst-distri-fedora/tests/apps_startstop/kde/aasetting.pm

24 lines
425 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;
solidify_wallpaper_kde;
# get rid of unwanted notifications that interfere with tests
click_unwanted_notifications;
}
sub test_flags {
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: