Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,10 @@ test('DataGrid - Group row content is scrolled if repaintChangesOnly is enabled

[false, true].forEach((rtlEnabled) => {
// T1284612
test.meta({ browserSize: [900, 800] })(`DataGrid - Group summaries are shown over sticky columns on a horizontal scroll (rtl=${rtlEnabled})`, async (t) => {
test.meta({
browserSize: [900, 800],
unstable: true,
})(`DataGrid - Group summaries are shown over sticky columns on a horizontal scroll (rtl=${rtlEnabled})`, async (t) => {
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);

const dataGrid = new DataGrid(DATA_GRID_SELECTOR);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const createSimpleData = (): Record<string, unknown>[] => [{
EndDate: new Date(2017, 4, 22, 13, 0, 0, 0),
}];

test('Recurrence appointments should be deleted by click on \'delete\' button', async (t) => {
test.meta({ unstable: true })('Recurrence appointments should be deleted by click on \'delete\' button', async (t) => {
const scheduler = new Scheduler('#container');

await t
Expand All @@ -63,7 +63,7 @@ test('Recurrence appointments should be deleted by click on \'delete\' button',
.eql(0);
}).before(async () => createScheduler(createRecurrenceData()));

test('Recurrence appointments should be deleted by press \'delete\' key', async (t) => {
test.meta({ unstable: true })('Recurrence appointments should be deleted by press \'delete\' key', async (t) => {
const scheduler = new Scheduler('#container');

await t
Expand Down
Loading