mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
13 lines
388 B
JavaScript
Executable File
13 lines
388 B
JavaScript
Executable File
const run = require('../helpers');
|
|
|
|
describe('Default behavior', () => {
|
|
it('suggests the closest match to an unknown command', () => {
|
|
const { status, stderr, stdout } = run(['upgraed']);
|
|
|
|
// Assertions
|
|
expect(status).toBe(1);
|
|
expect(stderr.toString()).toContain('Invalid command: upgraed.');
|
|
expect(stdout.toString()).toContain('Did you mean upgrade?');
|
|
});
|
|
});
|