mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-13 18:17:07 +02:00
Revert "Calendar: Fix some kanban listen problems"
This reverts commit 59e64cd908
.
This commit is contained in:
@ -101,34 +101,5 @@ export function inputBasicTests(before : Function, test_value : string, value_se
|
||||
// widget returns what we gave it
|
||||
assert.equal(element.get_value(), test_value);
|
||||
});
|
||||
});
|
||||
|
||||
describe("Required", () =>
|
||||
{
|
||||
beforeEach(async() =>
|
||||
{
|
||||
element = await before();
|
||||
});
|
||||
|
||||
// This is just visually comparing for a difference, no deep inspection
|
||||
it("looks different when required")
|
||||
|
||||
/*
|
||||
Not yet working attempt to have playwright compare visually
|
||||
|
||||
const pre = await page.locator(element.localName).screenshot();
|
||||
|
||||
element.required = true;
|
||||
|
||||
// wait for asychronous changes to the DOM
|
||||
await elementUpdated(<Element><unknown>element);
|
||||
|
||||
|
||||
const post = await page.locator(element.localName).screenshot();
|
||||
|
||||
expect(post).toMatchSnapshot(pre);
|
||||
|
||||
*/
|
||||
|
||||
});
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user