Skip to content

Commit 5314097

Browse files
test: adjusting setup test to reflect changes to script
1 parent 25d3924 commit 5314097

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

__tests__/setup.test.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe('Setup Script', () => {
5151
const content = fs.readFileSync(setupScriptPath, 'utf8');
5252

5353
// Check for progress tracking
54-
expect(content).toContain('TOTAL_STEPS=8');
54+
expect(content).toContain('TOTAL_STEPS=9');
5555
expect(content).toContain('CURRENT_STEP=0');
5656
expect(content).toContain('START_TIME=');
5757
});
@@ -67,7 +67,8 @@ describe('Setup Script', () => {
6767
expect(content).toContain('Step 5: Yarn Package Manager');
6868
expect(content).toContain('Step 6: Project Dependencies');
6969
expect(content).toContain('Step 7: iOS Dependencies');
70-
expect(content).toContain('Step 8: Final Setup');
70+
expect(content).toContain('Step 8: Install Maestro');
71+
expect(content).toContain('Step 9: Final Setup');
7172
});
7273

7374
test('setup script should have enhanced user feedback', () => {

0 commit comments

Comments
 (0)