Skip to content

Commit 3264a26

Browse files
committed
Eslint fix
1 parent a009ac5 commit 3264a26

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

packages/app/src/components/sidebar/explorer.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -315,11 +315,9 @@ export class DevtoolsSidebarExplorer extends CollapseableEntry {
315315
return (
316316
Boolean(
317317
['all', 'none'].includes(this.#testFilter.filterStatus) ||
318-
(entry.state === TestState.PASSED &&
319-
this.#testFilter.filtersPassed) ||
320-
(entry.state === TestState.FAILED &&
321-
this.#testFilter.filtersFailed) ||
322-
(entry.state === TestState.SKIPPED && this.#testFilter.filtersSkipped)
318+
(entry.state === TestState.PASSED && this.#testFilter.filtersPassed) ||
319+
(entry.state === TestState.FAILED && this.#testFilter.filtersFailed) ||
320+
(entry.state === TestState.SKIPPED && this.#testFilter.filtersSkipped)
323321
) &&
324322
(!this.#testFilter.filterQuery ||
325323
entryLabelIncludingChildren

0 commit comments

Comments
 (0)