Skip to content

Commit 8d5e862

Browse files
authored
Fix typo
1 parent 2b0da87 commit 8d5e862

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/index-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('Ansi', () => {
2828
expect(el.html()).to.equal('<code><span>hello </span><span style="color:rgb(0, 187, 0);">wo</span><span style="background-color:rgb(187, 187, 0);color:rgb(0, 187, 0);">rl</span><span>d</span></code>');
2929
});
3030

31-
it('can handle carrigage symbol', () => {
31+
it('can handle carriage symbol', () => {
3232
const el = enzyme.shallow(React.createElement(Ansi, null, 'this sentence\rthat\nwill make you pause'));
3333
expect(el).to.not.be.null;
3434
expect(el.text()).to.equal('that sentence\nwill make you pause');

0 commit comments

Comments
 (0)