Skip to content

Commit 2ba4060

Browse files
committed
Remove obvious comments from test file
1 parent 8f763bc commit 2ba4060

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests-ui/tests/components/bottomPanel/tabs/terminal/BaseTerminal.spec.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,7 @@ describe('BaseTerminal', () => {
102102
}
103103

104104
beforeEach(() => {
105-
// Reset mocks before each test
106105
vi.clearAllMocks()
107-
// Use the mocked terminal directly
108106
terminalMock = mockTerminal
109107
})
110108

@@ -134,7 +132,6 @@ describe('BaseTerminal', () => {
134132
const button = wrapper.find('button[aria-label]')
135133
expect(button.exists()).toBe(true)
136134

137-
// Initially button should not be interactive (has opacity-0 and pointer-events-none)
138135
expect(button.classes()).toContain('opacity-0')
139136
expect(button.classes()).toContain('pointer-events-none')
140137
})
@@ -154,7 +151,6 @@ describe('BaseTerminal', () => {
154151
terminalMock.hasSelection.mockReturnValue(true)
155152
wrapper = mountBaseTerminal()
156153

157-
// Trigger selection change
158154
const selectionCallback = terminalMock.onSelectionChange.mock.calls[0][0]
159155
selectionCallback()
160156
await nextTick()

0 commit comments

Comments
 (0)