diff --git a/android/app/build.gradle b/android/app/build.gradle index 8bd1351..0789ca8 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -41,8 +41,8 @@ android { missingDimensionStrategy "RNNotifications.reactNativeVersion", "reactNative60" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 36141 - versionName "1.115" + versionCode 36142 + versionName "1.116" buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() if (isNewArchitectureEnabled()) { diff --git a/package.json b/package.json index 1e3b2af..0dd14d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "massive", - "version": "1.115", + "version": "1.116", "private": true, "license": "GPL-3.0-only", "scripts": { diff --git a/tests/EditPlan.test.tsx b/tests/EditPlan.test.tsx index 0764d30..3c2c764 100644 --- a/tests/EditPlan.test.tsx +++ b/tests/EditPlan.test.tsx @@ -33,6 +33,7 @@ test('renders correctly', async () => { plan: { workouts: 'Bench,Rows,Curls', days: 'Monday,Tuesday,Thursday', + id: 1, } as Plan, }} name="EditPlan" diff --git a/tests/EditWorkout.test.tsx b/tests/EditWorkout.test.tsx index 5668cfa..1433a5c 100644 --- a/tests/EditWorkout.test.tsx +++ b/tests/EditWorkout.test.tsx @@ -25,7 +25,7 @@ test('renders correctly', async () => { { , ) fireEvent.press(await waitFor(() => getByTestId('add'))) - expect(await waitFor(() => getByText('Edit plan'))).toBeDefined() + expect(await waitFor(() => getByText('Add plan'))).toBeDefined() })