@absolutejs/absolute 0.20.0-beta.90 → 0.20.0-beta.91

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.
@@ -3,6 +3,7 @@ export * from './adaptiveShell';
3
3
  export * from './androidRelease';
4
4
  export * from './androidUpgradeConformance';
5
5
  export * from './iosRelease';
6
+ export * from './iosUpgradeConformance';
6
7
  export * from './iosConformance';
7
8
  export * from './iosSimulatorController';
8
9
  export * from './iosPhysicalDeviceTransport';
@@ -0,0 +1,16 @@
1
+ export type AbsoluteIosInstalledApp = {
2
+ appContainer: string;
3
+ appId: string;
4
+ buildNumber?: string;
5
+ dataContainer: string;
6
+ version?: string;
7
+ };
8
+ export type AbsoluteIosUpgradeCommandResult = {
9
+ exitCode: number;
10
+ stderr: string;
11
+ stdout: string;
12
+ };
13
+ export declare const inspectAbsoluteIosInstalledApp: (xcrun: string, udid: string, appId: string, run?: (command: string[]) => Promise<AbsoluteIosUpgradeCommandResult>, plutil?: string) => Promise<AbsoluteIosInstalledApp>;
14
+ export declare const parseAbsoluteIosInstalledAppInfo: (appId: string, appContainer: string, dataContainer: string, output: string) => AbsoluteIosInstalledApp;
15
+ /** Prove that Simulator inspections describe one app replaced by a newer build. */
16
+ export declare const assertAbsoluteIosInstalledAppUpgrade: (before: AbsoluteIosInstalledApp, after: AbsoluteIosInstalledApp) => void;
package/package.json CHANGED
@@ -476,6 +476,7 @@
476
476
  "test:native:expo:android:updates": "ABSOLUTE_TEST_NATIVE_EXPO_ANDROID_UPDATES=1 bun test tests/native/expo-android-update-conformance.test.ts",
477
477
  "test:native:expo:android:upgrade": "ABSOLUTE_TEST_NATIVE_EXPO_ANDROID_UPGRADE=1 bun test tests/native/expo-android-upgrade-conformance.test.ts",
478
478
  "test:native:expo:ios:updates": "ABSOLUTE_TEST_NATIVE_EXPO_IOS_UPDATES=1 bun test tests/native/expo-ios-update-conformance.test.ts",
479
+ "test:native:expo:ios:upgrade": "ABSOLUTE_TEST_NATIVE_EXPO_IOS_UPGRADE=1 bun test tests/native/expo-ios-upgrade-conformance.test.ts",
479
480
  "test:native:ios": "bun run test:native:ios:lifecycle && bun run test:native:ios:bundle",
480
481
  "test:native:ios:bundle": "ABSOLUTE_TEST_NATIVE_IOS=1 bun test tests/native/ios-embedded-bundle-conformance.test.ts",
481
482
  "test:native:ios:lifecycle": "ABSOLUTE_TEST_NATIVE_IOS=1 bun test tests/native/ios-lifecycle-conformance.test.ts",
@@ -529,7 +530,7 @@
529
530
  ]
530
531
  }
531
532
  },
532
- "version": "0.20.0-beta.90",
533
+ "version": "0.20.0-beta.91",
533
534
  "workspaces": [
534
535
  "tests/fixtures/*",
535
536
  "tests/fixtures/_packages/*"