Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Denys Fedotov authored and Denys Fedotov committed Oct 2, 2024
1 parent 6862509 commit 38b7841
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('replacePlaceholders()', () => {
const newStr = replacePlaceholders(str, config.placeholders);
expect(newStr).to.equal('Buy now and save 50% off CC All Apps.');
});
it('should not break when ther are no placeholders availble', () => {
it('should not break when there are no placeholders available', () => {
const str = 'For just {{promo-price}}, get 20+...';
const newStr = replacePlaceholders(str, null);
expect(newStr).to.equal(str);
Expand Down

0 comments on commit 38b7841

Please sign in to comment.