Skip to content

Commit

Permalink
fix: fixing deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
ayonious committed Mar 6, 2021
1 parent 8e8b4b6 commit 981d819
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/utils/string-utils.test.ts
Expand Up @@ -5,6 +5,7 @@ describe('Example: Print a simple Table with cell colors', () => {
it('cell colors are working', () => {
expect(limitWidth('as da s', 2)).toMatchObject(['as', 'da', 's']);
expect(limitWidth('as', 2)).toMatchObject(['as']);
expect(limitWidth('Hiya!', 5)).toMatchObject(['Hiya!']);
expect(
limitWidth(chalk.bgMagenta('magenta'), chalk.bgMagenta('magenta').length)
).toMatchObject([chalk.bgMagenta('magenta')]);
Expand Down

0 comments on commit 981d819

Please sign in to comment.