Skip to content

Commit 83f0748

Browse files
d13eamodio
authored andcommitted
Removes welcome from e2e tests
1 parent 49b6172 commit 83f0748

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

tests/e2e/specs/command_palette.test.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ import { expect, MaxTimeout, test } from './baseTest';
22

33
test.describe('Test GitLens Command Palette commands', () => {
44
test('should open commit graph with the command', async ({ page }) => {
5-
// Close any open tabs to ensure a clean state
6-
const welcomePageTab = page.locator('div[role="tab"][aria-label="Welcome to GitLens"]');
7-
await welcomePageTab.waitFor({ state: 'visible', timeout: MaxTimeout });
8-
void welcomePageTab.locator('div.tab-actions .action-item a.codicon-close').click();
9-
105
// Open the command palette by clicking on the View menu and selecting Command Palette
116
const commandPalette = page.locator('div[id="workbench.parts.titlebar"] .command-center-quick-pick');
127
await commandPalette.click();

tests/e2e/specs/gitlens_install.test.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
import { expect, test } from './baseTest';
22

33
test.describe('Test GitLens installation', () => {
4-
test('should display GitLens Welcome page after installation', async ({ page }) => {
5-
const title = await page.textContent('.tab a');
6-
expect(title).toBe('Welcome to GitLens');
7-
});
8-
94
test('should contain GitLens & GitLens Inspect icons in activity bar', async ({ page }) => {
105
await page.getByRole('tab', { name: 'GitLens Inspect' }).waitFor();
116
const gitlensIcons = page.getByRole('tab', { name: 'GitLens' });

0 commit comments

Comments
 (0)