We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a38641c commit 039cbbcCopy full SHA for 039cbbc
packages/core/src/__tests__/logger.test.ts
@@ -45,7 +45,11 @@ describe('Logger in nodejs', () => {
45
46
expect(spyingStdout).toBeCalledTimes(1);
47
expect(spyingStdout).toBeCalledWith(expect.stringContaining('separator'));
48
- expect(spyingStdout).toBeCalledWith(expect.stringMatching(/separator.*separator.*separator/));
+ expect(spyingStdout).toBeCalledWith(
49
+ colorize.gray(
50
+ 'separatorseparatorseparatorseparatorseparatorseparatorseparatorseparatorseparato'
51
+ )
52
+ );
53
});
54
55
it('should call output with indent', () => {
0 commit comments