restore ff tests

This commit is contained in:
Cory LaViska
2023-11-20 19:59:39 -05:00
parent 00435ac682
commit b6c9b64ec0
3 changed files with 4 additions and 8 deletions

View File

@@ -385,8 +385,7 @@ describe('<sl-color-picker>', () => {
expect(blurHandler).to.have.been.calledOnce;
});
// NOTE: Firefox is failing locally for me even though manual tests show this is working fine
it.skip('should emit sl-focus when rendered inline and focused', async () => {
it('should emit sl-focus when rendered inline and focused', async () => {
const el = await fixture<SlColorPicker>(html`
<div>
<sl-color-picker inline></sl-color-picker>
@@ -410,8 +409,7 @@ describe('<sl-color-picker>', () => {
expect(blurHandler).to.have.been.calledOnce;
});
// NOTE: Firefox is failing locally for me even though manual tests show this is working fine
it.skip('should focus and blur when calling focus() and blur() and rendered as a dropdown', async () => {
it('should focus and blur when calling focus() and blur() and rendered as a dropdown', async () => {
const colorPicker = await fixture<SlColorPicker>(html` <sl-color-picker></sl-color-picker> `);
const focusHandler = sinon.spy();
const blurHandler = sinon.spy();

View File

@@ -149,8 +149,7 @@ describe('<sl-dialog>', () => {
});
// https://github.com/shoelace-style/shoelace/issues/1382
// NOTE: Firefox is failing locally for me even though manual tests show this is working fine
it.skip('should properly cycle through tabbable elements when sl-dialog is used in a shadowRoot', async () => {
it('should properly cycle through tabbable elements when sl-dialog is used in a shadowRoot', async () => {
class AContainer extends LitElement {
get dialog() {
return this.shadowRoot?.querySelector('sl-dialog');

View File

@@ -443,8 +443,7 @@ describe('<sl-select>', () => {
});
describe('when resetting a form', () => {
// NOTE: Firefox is failing locally for me even though manual tests show this is working fine
it.skip('should reset the element to its initial value', async () => {
it('should reset the element to its initial value', async () => {
const form = await fixture<HTMLFormElement>(html`
<form>
<sl-select value="option-1">