File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
packages/cli-platform-apple/src/tools Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ describe('getInfo', () => {
1616 it ( 'handles non-project / workspace locations in a ' , ( ) => {
1717 const name = `YourProjectName` ;
1818 ( fs . readFileSync as jest . Mock )
19- . mockReturnValueOnce ( `<?xml version="1.0" encoding="UTF-8"?>
19+ . mockReturnValueOnce ( `<?xml version="1.0" encoding="UTF-8"?>
2020<Workspace
2121 version = "1.0">
2222 <FileRef
@@ -44,7 +44,7 @@ describe('getInfo', () => {
4444 it ( 'handles xcodeproj location in container in a ' , ( ) => {
4545 const name = `YourProjectName` ;
4646 ( fs . readFileSync as jest . Mock )
47- . mockReturnValueOnce ( `<?xml version="1.0" encoding="UTF-8"?>
47+ . mockReturnValueOnce ( `<?xml version="1.0" encoding="UTF-8"?>
4848<Workspace
4949 version = "1.0">
5050 <FileRef
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ import * as fs from 'fs';
55import * as path from 'path' ;
66import type { IosInfo } from '../types' ;
77
8- function isErrorLike ( err : unknown ) : err is { message : string } {
8+ function isErrorLike ( err : unknown ) : err is { message : string } {
99 return Boolean (
1010 err &&
11- typeof err === 'object' &&
12- 'message' in err &&
13- typeof err . message === 'string' ,
11+ typeof err === 'object' &&
12+ 'message' in err &&
13+ typeof err . message === 'string' ,
1414 ) ;
1515}
1616
You can’t perform that action at this time.
0 commit comments