Revert "Re-enable tab tests"

This reverts commit e0cdd0974b.
Revert reason: browser integration tests failing
This commit is contained in:
Raymond Zhao
2021-09-08 10:31:46 -07:00
parent c2f543ff60
commit df115e761a

View File

@@ -348,7 +348,7 @@ suite('vscode API - window', () => {
});
//#region Tabs API tests
test('Tabs - Ensure tabs getter is correct', async () => {
test.skip('Tabs - Ensure tabs getter is correct', async () => {
assert.ok(workspace.workspaceFolders);
const workspaceRoot = workspace.workspaceFolders[0].uri;
const [docA, docB, docC, notebookDoc] = await Promise.all([
@@ -394,7 +394,7 @@ suite('vscode API - window', () => {
assert.strictEqual(tabs[4].viewColumn, ViewColumn.Three);
});
test('Tabs - ensure active tab is correct', async () => {
test.skip('Tabs - ensure active tab is correct', async () => {
function createActiveTabListenerPromise(): Promise<void> {
return new Promise<void>((resolve) => {