mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-10 05:56:29 +00:00
8fd40986a5
* feat(types): add/update contrib types To "upgrade" to the latest specification. * fix: linting issues * test: Update question emoji in tests (#27) * Update format-contribution-type.test.js Updated the expected question emoji. * Update format-contributor.test.js Updated the expected question emoji. * Add @itaisteinherz as a contributor * generate * add code * doc: Add new contribution types to README.md (#26) * Update README.md Added the new contribution types to accommodate jfmengels/all-contributors-cli#24. * Add @itaisteinherz as a contributor * regenerate
51 lines
1.9 KiB
JavaScript
51 lines
1.9 KiB
JavaScript
import test from 'ava';
|
|
import _ from 'lodash/fp';
|
|
import formatContributor from './format-contributor';
|
|
import contributors from './fixtures/contributors.json';
|
|
|
|
function fixtures() {
|
|
const options = {
|
|
projectOwner: 'jfmengels',
|
|
projectName: 'all-contributors-cli',
|
|
imageSize: 150
|
|
};
|
|
return {options};
|
|
}
|
|
|
|
test('should format a simple contributor', t => {
|
|
const contributor = _.assign(contributors.kentcdodds, {contributions: ['review']});
|
|
const {options} = fixtures();
|
|
|
|
const expected = '[<img src="https://avatars1.githubusercontent.com/u/1500684" width="150px;"/><br /><sub>Kent C. Dodds</sub>](http://kentcdodds.com)<br />👀';
|
|
|
|
t.is(formatContributor(options, contributor), expected);
|
|
});
|
|
|
|
test('should format contributor with complex contribution types', t => {
|
|
const contributor = contributors.kentcdodds;
|
|
const {options} = fixtures();
|
|
|
|
const expected = '[<img src="https://avatars1.githubusercontent.com/u/1500684" width="150px;"/><br /><sub>Kent C. Dodds</sub>](http://kentcdodds.com)<br />[📖](https://github.com/jfmengels/all-contributors-cli/commits?author=kentcdodds) 👀 💬';
|
|
|
|
t.is(formatContributor(options, contributor), expected);
|
|
});
|
|
|
|
test('should format contributor using custom template', t => {
|
|
const contributor = contributors.kentcdodds;
|
|
const {options} = fixtures();
|
|
options.contributorTemplate = '<%= contributor.name %> is awesome!';
|
|
|
|
const expected = 'Kent C. Dodds is awesome!';
|
|
|
|
t.is(formatContributor(options, contributor), expected);
|
|
});
|
|
|
|
test('should default image size to 100', t => {
|
|
const contributor = _.assign(contributors.kentcdodds, {contributions: ['review']});
|
|
const {options} = fixtures();
|
|
delete options.imageSize;
|
|
|
|
const expected = '[<img src="https://avatars1.githubusercontent.com/u/1500684" width="100px;"/><br /><sub>Kent C. Dodds</sub>](http://kentcdodds.com)<br />👀';
|
|
|
|
t.is(formatContributor(options, contributor), expected);
|
|
});
|