Эх сурвалжийг харах

Revert "style: biome auto-fix env.test.ts formatting"

This reverts commit d37c5a5bffdbd3af30a5f1fde4814cc419e7559d.
Michael Henke 2 долоо хоног өмнө
parent
commit
32372c04ff
1 өөрчлөгдсөн 6 нэмэгдсэн , 11 устгасан
  1. 6 11
      src/utils/env.test.ts

+ 6 - 11
src/utils/env.test.ts

@@ -10,17 +10,12 @@ describe('isTruthyEnvValue', () => {
     expect(isTruthyEnvValue(value)).toBe(true);
   });
 
-  test.each([
-    undefined,
-    '',
-    '0',
-    'false',
-    'no',
-    'off',
-    'anything',
-  ])('%p is not truthy', (value) => {
-    expect(isTruthyEnvValue(value)).toBe(false);
-  });
+  test.each([undefined, '', '0', 'false', 'no', 'off', 'anything'])(
+    '%p is not truthy',
+    (value) => {
+      expect(isTruthyEnvValue(value)).toBe(false);
+    },
+  );
 });
 
 describe('isPluginDisabledByEnv', () => {