Skip to content

Commit

Permalink
Unskip and one fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval authored Oct 10, 2023
1 parent 8d04591 commit 0cf640c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ui-tests/tests/replacePerItem.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ test('should replace results for a particular file only', async ({ page }) => {
);
});

test.skip('should undo replace results for a particular file only', async ({
test('should undo replace results for a particular file only', async ({
page
}) => {
await page.getByRole('tab', { name: 'Search and Replace' }).click();
Expand Down Expand Up @@ -228,7 +228,7 @@ test('should replace results for a particular match only', async ({ page }) => {
);
});

test.skip('should undo replace results for a particular match only', async ({
test('should undo replace results for a particular match only', async ({
page
}) => {
await page.getByRole('tab', { name: 'Search and Replace' }).click();
Expand Down
2 changes: 1 addition & 1 deletion ui-tests/tests/search.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ test('should get 5 matches', async ({ page, tmpPath }) => {
);

// Check the match is selected in the editor
await expect(page.locator('span.CodeMirror-selectedtext')).toHaveText(
await expect(page.locator('::selection')).toHaveText(
'strange'
);
});
Expand Down

0 comments on commit 0cf640c

Please sign in to comment.