Skip to content

Commit 7342f8f

Browse files
committed
try again 2
1 parent 658f698 commit 7342f8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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
@@ -73,7 +73,7 @@ describe('webstatus-saved-search-editor', () => {
7373
sinon.restore();
7474
});
7575

76-
describe.skip('Rendering', () => {
76+
describe('Rendering', () => {
7777
it('renders correctly for a new search (save operation)', async () => {
7878
const mockTypeahead = {value: newSearchQuery} as WebstatusTypeahead;
7979
el = await setupComponent('save', undefined, mockTypeahead);
@@ -121,7 +121,7 @@ describe('webstatus-saved-search-editor', () => {
121121
});
122122
});
123123

124-
describe.skip('Form Submission (Save)', () => {
124+
describe('Form Submission (Save)', () => {
125125
it('calls createSavedSearch for a new search and dispatches "save" event', async () => {
126126
const mockTypeahead = {value: newSearchQuery} as WebstatusTypeahead;
127127
el = await setupComponent('save', undefined, mockTypeahead);
@@ -267,7 +267,7 @@ describe('webstatus-saved-search-editor', () => {
267267
});
268268
});
269269

270-
describe.skip('Delete Functionality', () => {
270+
describe('Delete Functionality', () => {
271271
beforeEach(async () => {
272272
el = await setupComponent('delete', existingSearch);
273273
});

0 commit comments

Comments
 (0)