Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/smoke/src/areas/task/task.test.ts')
-rw-r--r--test/smoke/src/areas/task/task.test.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/smoke/src/areas/task/task.test.ts b/test/smoke/src/areas/task/task.test.ts
new file mode 100644
index 00000000000..871eaabd269
--- /dev/null
+++ b/test/smoke/src/areas/task/task.test.ts
@@ -0,0 +1,22 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+
+import { Logger } from '../../../../automation';
+import { installAllHandlers } from '../../utils';
+import { setup as setupTaskQuickPickTests } from './task-quick-pick.test';
+
+export function setup(logger: Logger) {
+ describe('Task', function () {
+
+ // Retry tests 3 times to minimize build failures due to any flakiness
+ this.retries(3);
+
+ // Shared before/after handling
+ installAllHandlers(logger);
+
+
+ setupTaskQuickPickTests();
+ });
+}