* Generic Object Injection Sink * (fix) "Character" is not defined. * added eslint * improve code quality, use refactored function * (fix) eslint jest * "Character" is not defined * removed unused file Compare.js * (fix) PointsUsed is not defined * (fix) eslint moans jsconfig * turn off "no-prototype-builtins" * push code coverage
11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
require('module-alias/register');
|
|
const { Capitalize } = require('@dsabot/Capitalize');
|
|
|
|
it('should capitalize the first letter.', () => {
|
|
expect(Capitalize('mother')).toBe('Mother');
|
|
});
|
|
|
|
it('should capitalize without any word given', () => {
|
|
expect(Capitalize()).toBe('None');
|
|
});
|