Kaynağa Gözat

chore(test): format review regressions

Aveer 1 gün önce
ebeveyn
işleme
eff7bdc95e

+ 4 - 9
src/config/skills-add-remove-review.test.ts

@@ -7,19 +7,14 @@ import {
 describe('skills_add / skills_remove review regressions', () => {
 describe('skills_add / skills_remove review regressions', () => {
   test('lifting an inherited exclusion allows the same skill to be added', () => {
   test('lifting an inherited exclusion allows the same skill to be added', () => {
     expect(
     expect(
-      resolveEffectiveSkills(
-        'oracle',
-        ['a', '!foo'],
-        ['foo'],
-        ['!foo'],
-      ),
+      resolveEffectiveSkills('oracle', ['a', '!foo'], ['foo'], ['!foo']),
     ).toEqual(['a', 'foo']);
     ).toEqual(['a', 'foo']);
   });
   });
 
 
   test('plain-name removal still wins over adding the same skill', () => {
   test('plain-name removal still wins over adding the same skill', () => {
-    expect(
-      resolveEffectiveSkills('oracle', ['a'], ['foo'], ['foo']),
-    ).toEqual(['a']);
+    expect(resolveEffectiveSkills('oracle', ['a'], ['foo'], ['foo'])).toEqual([
+      'a',
+    ]);
   });
   });
 
 
   test('legacy agent aliases resolve the same default grants as canonical names', () => {
   test('legacy agent aliases resolve the same default grants as canonical names', () => {