ensure spec commands show up before misc ones (#240724)

fix #239977
This commit is contained in:
Megan Rogge
2025-02-18 19:58:47 -06:00
committed by GitHub
parent 02a27257d2
commit edac0c5a27
31 changed files with 1039 additions and 327 deletions

View File

@@ -5,6 +5,7 @@
import 'mocha';
import * as vscode from 'vscode';
import type { ICompletionResource } from '../types';
import type { Uri } from 'vscode';
export interface ISuiteSpec {
@@ -22,7 +23,7 @@ export interface ITestSpec {
type: 'files' | 'folders' | 'both';
cwd: Uri;
};
expectedCompletions?: string[];
expectedCompletions?: (string | ICompletionResource)[];
}
const fixtureDir = vscode.Uri.joinPath(vscode.Uri.file(__dirname), '../../testWorkspace');