storybook/lib/cli/test/cli.test.js
2020-11-28 13:09:23 +05:30

11 lines
321 B
JavaScript
Executable File

const { run } = require('./helpers');
describe('Default behavior', () => {
it('suggests the closest match to an unknown command', () => {
const { output, status } = run(['upgraed']);
const stdout = output.toString();
expect(stdout).toContain('Did you mean upgrade?');
expect(status).toBe(1);
});
});