We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df0bea6 commit f206bb3Copy full SHA for f206bb3
1 file changed
plugins/Dashboard/tests/UI/Dashboard_spec.js
@@ -56,8 +56,13 @@ describe("Dashboard", function () {
56
await page.waitForNetworkIdle();
57
await page.evaluate(() => { // give table headers constant width so the screenshot stays the same
58
$('.dataTableScroller').css('overflow-x', 'scroll');
59
+ $('[widgetid="widgetRssWidgetrssChangelog"] .widgetContent').html(
60
+ '<div style="padding:10px 15px;"><ul class="rss"><li>' +
61
+ '<div class="rss-description">Changed to something static for tests</div>' +
62
+ '</li></ul></div>'
63
+ );
64
});
- await page.waitForTimeout(500);
65
+ await page.waitForTimeout(100);
66
pageWrap = await page.$('.pageWrap');
67
expect(await pageWrap.screenshot()).to.matchImage('dashboard4');
68
0 commit comments