test: mark reporter-blob tests as slow (#22530)
They run several playwright instances for each shard and then open merged html report which takes considerable time
This commit is contained in:
parent
94b36a3805
commit
9ea9adf8ff
|
|
@ -58,6 +58,7 @@ const test = baseTest.extend<{
|
|||
test.use({ channel: 'chrome' });
|
||||
|
||||
test('should merge into html', async ({ runInlineTest, mergeReports, showReport, page }) => {
|
||||
test.slow();
|
||||
const reportDir = test.info().outputPath('blob-report');
|
||||
const files = {
|
||||
'playwright.config.ts': `
|
||||
|
|
@ -122,6 +123,7 @@ test('should merge into html', async ({ runInlineTest, mergeReports, showReport,
|
|||
});
|
||||
|
||||
test('be able to merge incomplete shards', async ({ runInlineTest, mergeReports, showReport, page }) => {
|
||||
test.slow();
|
||||
const reportDir = test.info().outputPath('blob-report');
|
||||
const files = {
|
||||
'playwright.config.ts': `
|
||||
|
|
|
|||
Loading…
Reference in a new issue