skip test and remove unused code

This commit is contained in:
meganrogge 2021-03-24 15:27:13 -07:00
parent 8d6c2a2388
commit b63cfb3a8b
2 changed files with 3 additions and 3 deletions

View file

@ -634,7 +634,7 @@ import { assertNoRpc } from '../utils';
});
suite('environmentVariableCollection', () => {
test('should have collection variables apply to terminals immediately after setting', (done) => {
test.skip('should have collection variables apply to terminals immediately after setting', (done) => {
// Text to match on before passing the test
const expectedText = [
'~a2~',

View file

@ -250,16 +250,16 @@ export interface ITerminalExecutable {
args?: string | string[] | undefined;
isAutoDetected?: boolean;
overrideName?: string;
displayOrder?: number;
}
export interface ITerminalProfileSource {
source: ProfileSource;
isAutoDetected?: boolean;
overrideName?: string;
displayOrder?: number;
}
export type ProfileName = string;
export type ITerminalProfileObject = ITerminalExecutable | ITerminalProfileSource | null;
export interface IAvailableProfilesRequest {