21 lines
533 B
Plaintext
21 lines
533 B
Plaintext
import test from 'ava';
|
|
import mockStdIo from 'mock-stdio';
|
|
import { version, help } from '../lib/cli.js';
|
|
import { readJSON } from '../lib/util.js';
|
|
|
|
const pkg = readJSON(new URL('../package.json', import.meta.url));
|
|
|
|
test('should print version', t => {
|
|
mockStdIo.start();
|
|
version();
|
|
const { stdout } = mockStdIo.end();
|
|
t.is(stdout, `v${pkg.version}\n`);
|
|
});
|
|
|
|
test('should print help', t => {
|
|
mockStdIo.start();
|
|
help();
|
|
const { stdout } = mockStdIo.end();
|
|
t.regex(stdout, RegExp(`Release It!.+${pkg.version}`));
|
|
});
|