@l4yercak3/cli 1.2.18 → 1.2.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -42,11 +42,10 @@ describe('ExpoDetector', () => {
42
42
 
43
43
  const result = detector.detect('/test/project');
44
44
 
45
- // Pure React Native has lower confidence (0.7)
46
- // which is below the 0.8 threshold, so it won't be the "detected" match
47
- // but the detector still returns useful data
45
+ // Pure React Native has confidence of 0.85
46
+ // which is above the 0.8 threshold, so it will be detected
48
47
  expect(result.detected).toBe(true);
49
- expect(result.confidence).toBe(0.7);
48
+ expect(result.confidence).toBe(0.85);
50
49
  });
51
50
 
52
51
  it('does not detect non-Expo/React Native project', () => {