Skip to content

Commit 36dd965

Browse files
authored
e2e-test: remove manually setting multisessions (#7159)
### Summary I assume these accidentally got added back in when merging upstream into the multisession branch. Removing these settings as they are no longer needed. ### QA Notes @:sessions
1 parent 1762dde commit 36dd965

File tree

5 files changed

+0
-20
lines changed

5 files changed

+0
-20
lines changed

test/e2e/tests/interpreters/new-uv-project.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ test.describe('New UV Environment', {
1616
tag: [tags.INTERPRETER]
1717
}, () => {
1818

19-
test.beforeAll(async function ({ userSettings }) {
20-
await userSettings.set([['console.multipleConsoleSessions', 'true']], true);
21-
});
22-
2319
test.afterAll(async () => {
2420
const projPath = '/tmp/vscsmoke/qa-example-content/proj';
2521
try {

test/e2e/tests/sessions/session-autocomplete.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ test.describe('Session: Autocomplete', {
1414
tag: [tags.WEB, tags.WIN, tags.CONSOLE, tags.SESSIONS, tags.EDITOR, tags.CRITICAL]
1515
}, () => {
1616

17-
test.beforeAll(async function ({ userSettings }) {
18-
await userSettings.set([['console.multipleConsoleSessions', 'true']], true);
19-
});
20-
2117
test.afterEach(async function ({ hotKeys }) {
2218
await hotKeys.closeAllEditors();
2319
});

test/e2e/tests/sessions/session-delete.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ test.describe('Sessions: Delete', {
1313
tag: [tags.WEB, tags.CRITICAL, tags.WIN, tags.SESSIONS, tags.CRITICAL]
1414
}, () => {
1515

16-
test.beforeAll(async function ({ userSettings }) {
17-
await userSettings.set([['console.multipleConsoleSessions', 'true']], true);
18-
});
19-
2016
test('Python - Validate can delete a single session', async function ({ sessions }) {
2117
await sessions.start(['python']);
2218
await sessions.expectSessionCountToBe(1);

test/e2e/tests/sessions/session-outline.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ test.describe('Session: Outline', {
1717
tag: [tags.WEB, tags.WIN, tags.SESSIONS, tags.OUTLINE, tags.CRITICAL]
1818
}, () => {
1919

20-
test.beforeAll(async function ({ userSettings }) {
21-
await userSettings.set([['console.multipleConsoleSessions', 'true']], true);
22-
});
23-
2420
test.beforeAll(async function ({ app, openFile }) {
2521
const { variables, outline } = app.workbench;
2622

test/e2e/tests/sessions/session-state.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ test.describe('Sessions: State', {
1313
tag: [tags.WIN, tags.WEB, tags.CONSOLE, tags.SESSIONS, tags.CRITICAL]
1414
}, () => {
1515

16-
test.beforeAll(async function ({ userSettings }) {
17-
await userSettings.set([['console.multipleConsoleSessions', 'true']], true);
18-
});
19-
2016
test.beforeEach(async function ({ app, sessions }) {
2117
await app.workbench.variables.togglePane('hide');
2218
await sessions.deleteDisconnectedSessions();

0 commit comments

Comments
 (0)