Skip to content

Commit

Permalink
chore(deps): remove 'wide-align'
Browse files Browse the repository at this point in the history
  • Loading branch information
juergba committed Sep 23, 2021
1 parent 8421974 commit ed6301d
Show file tree
Hide file tree
Showing 3 changed files with 319 additions and 415 deletions.
3 changes: 1 addition & 2 deletions lib/cli/one-and-dones.js
Expand Up @@ -8,7 +8,6 @@
* @private
*/

const align = require('wide-align');
const Mocha = require('../mocha');

/**
Expand All @@ -30,7 +29,7 @@ const showKeys = obj => {
.forEach(key => {
const description = obj[key].description;
console.log(
` ${align.left(key, maxKeyLength + 1)}${
` ${key.padEnd(maxKeyLength + 1)}${
description ? `- ${description}` : ''
}`
);
Expand Down

0 comments on commit ed6301d

Please sign in to comment.