Skip to content

Commit ba9deb0

Browse files
♻️ refactor(test/remove): Correctly import CommonJS module chalk.
1 parent 6a1561c commit ba9deb0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/src/RedBlackTree/remove.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ const {shuffle} = entropy(seed);
1414

1515
import {RedBlackTree, _debug} from '../../../src/index.js';
1616

17-
// eslint-disable-next-line unicorn/import-style
18-
import {bgRed as red, bgBlack as black} from 'chalk';
17+
import chalk from 'chalk';
18+
19+
const {bgRed: red, bgBlack: black} = chalk;
1920

2021
const debug = _debug({red, black});
2122

0 commit comments

Comments
 (0)