import { expect, fixture, html } from '@open-wc/testing';
import { spy } from 'sinon';
import '@lion/input/lion-input.js';
import '@lion/fieldset/lion-fieldset.js';
import '../lion-form.js';
describe('', () => {
it.skip('has a custom reset that gets triggered by native reset', async () => {
const withDefaults = await fixture(html`
`);
const resetButton = withDefaults.querySelector('input[type=reset]');
withDefaults.formElements.firstName.modelValue = 'updatedFoo';
expect(withDefaults.modelValue).to.deep.equal({
firstName: 'updatedFoo',
});
withDefaults.reset();
expect(withDefaults.modelValue).to.deep.equal({
firstName: 'Foo',
});
// use button
withDefaults.formElements.firstName.modelValue = 'updatedFoo';
expect(withDefaults.modelValue).to.deep.equal({
firstName: 'updatedFoo',
});
resetButton.click();
expect(withDefaults.modelValue).to.deep.equal({
firstName: 'Foo',
});
});
it('works with the native submit event (triggered via a button)', async () => {
const submitSpy = spy();
const el = await fixture(html`
`);
const button = el.querySelector('button');
button.click();
expect(submitSpy.callCount).to.equal(1);
});
});