Skip to content

Commit

Permalink
Add unit test check
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Jun 10, 2017
1 parent 364ca2a commit 6f4df84
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/util/text.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ describe('Util Text', () => {
expect(Text.matchCase('apple', 'orange')).to.be.equal('orange');
expect(Text.matchCase('APPLE', 'orange')).to.be.equal('ORANGE');
expect(Text.matchCase('ApPlE', 'OrangE')).to.be.equal('OrangE');
expect(Text.matchCase('apPlE', 'OrangE')).to.be.equal('orangE');
});

it('tests skipping Chinese characters', () => {
Expand Down

0 comments on commit 6f4df84

Please sign in to comment.