Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit f096a9d

Browse files
committed
chore: disable color in test
1 parent 121416f commit f096a9d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

node/validation/manifest/index.test.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
/* eslint-disable max-nested-callbacks */
2+
import process from 'process'
3+
4+
// Disable chalk color output
5+
process.env.FORCE_COLOR = '0'
6+
7+
// eslint-disable-next-line import/first
28
import { test, expect, describe } from 'vitest'
39

10+
// eslint-disable-next-line import/first
411
import { validateManifest, ManifestValidationError } from './index.js'
512

613
// Factory so we have a new object per test

0 commit comments

Comments
 (0)