This commit is contained in:
Cory LaViska
2022-05-25 08:56:22 -04:00
parent 37b172dbfd
commit f02941445b
3 changed files with 5 additions and 10 deletions

View File

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