Revert "Calendar: Fix some kanban listen problems"

This reverts commit 59e64cd908.
This commit is contained in:
nathan
2022-08-25 10:16:05 -06:00
parent 59e64cd908
commit 33dcbc218f
4 changed files with 4 additions and 421 deletions

View File

@ -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);
*/
});
})
}