Rename image-preview extension to media-preview (#162093)

Fixes #162092

Also removes `aac` from the list of supported audio formats
This commit is contained in:
Matt Bierner
2022-09-27 21:01:14 -07:00
committed by GitHub
parent fd06e2ffd9
commit c2a2ad4f63
33 changed files with 39 additions and 26 deletions

View File

@@ -32,7 +32,7 @@ suite('vscode API - env', () => {
test('env.remoteName', function () {
const remoteName = env.remoteName;
const knownWorkspaceExtension = extensions.getExtension('vscode.git');
const knownUiAndWorkspaceExtension = extensions.getExtension('vscode.image-preview');
const knownUiAndWorkspaceExtension = extensions.getExtension('vscode.media-preview');
if (typeof remoteName === 'undefined') {
// not running in remote, so we expect both extensions
assert.ok(knownWorkspaceExtension);