Skip to content

Commit 24aab07

Browse files
committed
temp
1 parent a04b3ac commit 24aab07

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ describe('webstatus-saved-search-editor', () => {
4848
} as unknown as User;
4949

5050
async function setupComponent(
51-
operation: 'save' | 'edit' | 'delete',
52-
savedSearch?: UserSavedSearch,
53-
overviewPageQueryInput?: WebstatusTypeahead,
51+
_operation: 'save' | 'edit' | 'delete',
52+
_savedSearch?: UserSavedSearch,
53+
_overviewPageQueryInput?: WebstatusTypeahead,
5454
): Promise<WebstatusSavedSearchEditor> {
5555
apiClientStub = sinon.createStubInstance(APIClient);
5656
toastStub = sinon.stub(Toast.prototype, 'toast');
@@ -64,7 +64,8 @@ describe('webstatus-saved-search-editor', () => {
6464
`);
6565
console.log('Pre step 2');
6666
// Manually open the dialog after fixture creation
67-
await component.open(operation, savedSearch, overviewPageQueryInput);
67+
// await component.open(operation, savedSearch, overviewPageQueryInput);
68+
await component.updateComplete;
6869
return component;
6970
}
7071

0 commit comments

Comments
 (0)