Skip to content

Commit 98b64b7

Browse files
committed
Fix tests on earlier Node versions
1 parent 829b1bf commit 98b64b7

File tree

1 file changed

+2
-2
lines changed
  • packages/tailwindcss-language-server/tests/utils

1 file changed

+2
-2
lines changed

packages/tailwindcss-language-server/tests/utils/client.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ import { clearLanguageBoundariesCache } from '@tailwindcss/language-service/src/
4545
import { DefaultMap } from '../../src/util/default-map'
4646
import { connect, ConnectOptions } from './connection'
4747
import type { DeepPartial } from './types'
48-
import { styleText } from 'node:util'
4948

5049
export interface DocumentDescriptor {
5150
/**
@@ -237,7 +236,8 @@ export interface ClientWorkspace {
237236

238237
function trace(msg: string, ...args: any[]) {
239238
console.log(
240-
`${styleText(['bold', 'blue', 'inverse'], ' TEST ')} ${styleText('dim', msg)}`,
239+
// `${styleText(['bold', 'blue', 'inverse'], ' TEST ')} ${styleText('dim', msg)}`,
240+
` TEST ${msg}`,
241241
...args,
242242
)
243243
}

0 commit comments

Comments
 (0)