chore(input-datepicker): added integration tests InteractionStateMixin
This commit is contained in:
parent
5e4e3308c0
commit
11c829758e
2 changed files with 12 additions and 1 deletions
|
|
@ -41,7 +41,8 @@
|
|||
"@lion/input-date": "^0.1.43",
|
||||
"@lion/localize": "^0.4.12",
|
||||
"@lion/overlays": "^0.3.12",
|
||||
"@lion/validate": "^0.2.25"
|
||||
"@lion/validate": "^0.2.25",
|
||||
"@lion/field": "^0.1.41"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lion/button": "^0.3.4",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
import { runInteractionStateMixinSuite } from '@lion/field/test-suites/InteractionStateMixin.suite.js';
|
||||
import '../lion-input-datepicker.js';
|
||||
|
||||
describe('<lion-input-datepicker> integrations', () => {
|
||||
runInteractionStateMixinSuite({
|
||||
tagString: 'lion-input-datepicker',
|
||||
suffix: 'lion-input-datepicker',
|
||||
allowedModelValueTypes: [Date],
|
||||
});
|
||||
});
|
||||
Loading…
Reference in a new issue