mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-09 12:57:46 +00:00
We no longer publish versions that include `-canary` in the package.json `version` field, so these are dead code. Just doing a little bit of cleanup.
9 lines
278 B
TypeScript
9 lines
278 B
TypeScript
import getUpdateCommand from '../../../src/util/get-update-command';
|
|
|
|
describe('getUpdateCommand', () => {
|
|
it('should detect update command', async () => {
|
|
const updateCommand = await getUpdateCommand();
|
|
expect(updateCommand).toEqual(`npm i vercel@latest`);
|
|
});
|
|
});
|