fixed linitng errors

This commit is contained in:
GeneratorX16 2025-02-01 13:06:49 +05:30
parent 4971b3e1ba
commit 5a4529abaa

View file

@ -331,7 +331,7 @@ test('should have watch icon highlighted when a test is focused and watch on the
}); });
await page.getByText('a.test.ts').click(); await page.getByText('a.test.ts').click();
// watch icon should not be highlight till the watch icon is clicked // watch icon should not be highlight till the watch icon is clicked
await expect(page.getByRole('treeitem', { name: 'a.test.ts' }).getByRole('button', { name: 'Watch' })).toHaveCSS('color', 'rgb(255, 255, 255)'); await expect(page.getByRole('treeitem', { name: 'a.test.ts' }).getByRole('button', { name: 'Watch' })).toHaveCSS('color', 'rgb(255, 255, 255)');
await page.getByRole('treeitem', { name: 'passes' }).hover(); await page.getByRole('treeitem', { name: 'passes' }).hover();