Skip to content

Commit e4ecc22

Browse files
committed
different skips
1 parent 9aae3e3 commit e4ecc22

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

frontend/src/static/js/components/test/webstatus-saved-search-editor.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {taskUpdateComplete} from './test-helpers.js';
2727
import {User} from '../../contexts/firebase-user-context.js';
2828
import {InternalServerError} from '../../api/errors.js';
2929
import {TaskStatus} from '@lit/task';
30-
describe.skip('webstatus-saved-search-editor', () => {
30+
describe('webstatus-saved-search-editor', () => {
3131
let el: WebstatusSavedSearchEditor;
3232
let apiClientStub: sinon.SinonStubbedInstance<APIClient>;
3333
let toastStub: sinon.SinonStub;
@@ -71,7 +71,7 @@ describe.skip('webstatus-saved-search-editor', () => {
7171
sinon.restore();
7272
});
7373

74-
describe('Rendering', () => {
74+
describe.skip('Rendering', () => {
7575
it('renders correctly for a new search (save operation)', async () => {
7676
const mockTypeahead = {value: newSearchQuery} as WebstatusTypeahead;
7777
el = await setupComponent('save', undefined, mockTypeahead);
@@ -119,7 +119,7 @@ describe.skip('webstatus-saved-search-editor', () => {
119119
});
120120
});
121121

122-
describe.skip('Form Submission (Save)', () => {
122+
describe('Form Submission (Save)', () => {
123123
it('calls createSavedSearch for a new search and dispatches "save" event', async () => {
124124
const mockTypeahead = {value: newSearchQuery} as WebstatusTypeahead;
125125
el = await setupComponent('save', undefined, mockTypeahead);

0 commit comments

Comments
 (0)