@@ -27,7 +27,7 @@ import {taskUpdateComplete} from './test-helpers.js';
2727import { User } from '../../contexts/firebase-user-context.js' ;
2828import { InternalServerError } from '../../api/errors.js' ;
2929import { 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