Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/smoke/src/areas/task/task.test.ts
3520 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import { Logger } from '../../../../automation';
7
import { installAllHandlers } from '../../utils';
8
import { setup as setupTaskQuickPickTests } from './task-quick-pick.test';
9
10
export function setup(logger: Logger) {
11
describe('Task', function () {
12
13
// Retry tests 3 times to minimize build failures due to any flakiness
14
this.retries(3);
15
16
// Shared before/after handling
17
installAllHandlers(logger);
18
19
// Refs https://github.com/microsoft/vscode/issues/225250
20
// Pty spawning fails with invalid fd error in product CI while development CI
21
// works fine, we need additional logging to investigate.
22
setupTaskQuickPickTests({ skipSuite: process.platform === 'linux' });
23
});
24
}
25
26