/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { randomPath } from '../../common/extpath.js';6import { join } from '../../common/path.js';7import * as testUtils from '../common/testUtils.js';89export function getRandomTestPath(tmpdir: string, ...segments: string[]): string {10return randomPath(join(tmpdir, ...segments));11}1213export import flakySuite = testUtils.flakySuite;141516