2019-04-08 12:29:16 +00:00
|
|
|
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;
|
2020-04-28 09:12:43 +00:00
|
|
|
solidify_wallpaper;
|
2019-07-17 16:02:24 +00:00
|
|
|
# get rid of unwanted notifications that interfere with tests
|
|
|
|
click_unwanted_notifications;
|
2019-04-08 12:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return {fatal => 1, milestone => 1};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|