mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-17 20:11:23 +02:00
Calendar: Fix some kanban listen problems
- Status filter isn't really applicable - Priority was missing its options
This commit is contained in:
@@ -101,5 +101,34 @@ 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