mirror of
https://github.com/shoelace-style/shoelace.git
synced 2026-01-12 02:59:13 +00:00
restore ff tests
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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');
|
||||
|
||||
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user