mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
fixes #760
This commit is contained in:
@@ -23,7 +23,6 @@ describe('<sl-input>', () => {
|
||||
const today = new Date();
|
||||
|
||||
el.valueAsDate = today;
|
||||
await el.updateComplete;
|
||||
|
||||
expect(el.value).to.equal(today.toISOString().split('T')[0]);
|
||||
});
|
||||
@@ -33,7 +32,6 @@ describe('<sl-input>', () => {
|
||||
const num = 12345;
|
||||
|
||||
el.valueAsNumber = num;
|
||||
await el.updateComplete;
|
||||
|
||||
expect(el.value).to.equal(num.toString());
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user