[ftr] Tag dashboard pdf and csv generation as smoke tests (#121328)

The smoke tag is used in package testing to test kibana and associated
binaries.  Reporting spawns a chromium process, so it's a good candidate
for package testing.

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Jonathan Budzenski 2021-12-17 14:27:15 -06:00 committed by GitHub
parent a96a5e29d5
commit d4fab0abae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,7 @@ import { FtrProviderContext } from '../../../ftr_provider_context';
export default function ({ loadTestFile }: FtrProviderContext) {
describe('Reporting', function () {
this.tags(['smoke']);
loadTestFile(require.resolve('./screenshots'));
loadTestFile(require.resolve('./download_csv'));
});