Add instructions to the extensions update info notification (#14907)

This commit is contained in:
christine betts
2025-12-30 14:50:33 -05:00
committed by GitHub
parent 90eb1e0281
commit ec79fe1ab2
2 changed files with 7 additions and 9 deletions
@@ -107,7 +107,7 @@ describe('useExtensionUpdates', () => {
expect(addItem).toHaveBeenCalledWith(
{
type: MessageType.INFO,
text: 'You have 1 extension with an update available, run "/extensions list" for more information.',
text: `You have 1 extension with an update available. Run "/extensions update test-extension".`,
},
expect.any(Number),
);
@@ -319,7 +319,7 @@ describe('useExtensionUpdates', () => {
expect(addItem).toHaveBeenCalledWith(
{
type: MessageType.INFO,
text: 'You have 2 extensions with an update available, run "/extensions list" for more information.',
text: `You have 2 extensions with an update available. Run "/extensions update test-extension-1 test-extension-2".`,
},
expect.any(Number),
);