-
Notifications
You must be signed in to change notification settings - Fork 17
Fix dependency versions #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
tobi-legan
wants to merge
14
commits into
tetherto:main
Choose a base branch
from
tobi-legan:fix-dependency-versions
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Introduced E2E testing framework in the `e2e` directory, including configuration files and test scripts. - Added `HomeOnboardingScreen` page object for managing onboarding screen interactions. - Implemented initial test for wallet app onboarding, verifying UI elements and welcome messages. - Updated `.gitignore` to exclude E2E test artifacts and configuration files. - Modified `app.json` to disable development client for production builds. - Added `package-lock.json` and `package.json` for E2E testing dependencies.
… multi-platform config support - Add Qase.io test management integration - Create platform-specific WebdriverIO configs (iOS/Android) - Implement qase() wrapper for automatic test result reporting - Add platform detection for test run naming ([iOS]/[Android]) - Support both iOS and Android e2e testing - Update README with platform-specific test commands
- Added configuration files for E2E testing in the `test/e2e` directory. - Created `HomeOnboardingScreen` page object for managing onboarding interactions. - Developed initial test for wallet app onboarding, verifying UI elements and welcome messages. - Updated `package.json` and `package-lock.json` to include necessary dependencies for testing. - Modified `.gitignore` to exclude test artifacts and configuration files. - Removed legacy E2E testing setup from `e2e` directory.
- Added `dotenv`, `qase-api-client`, and `strip-ansi` to `package.json` and `package-lock.json`. - Updated test specifications path in `wdio.base.conf.ts` to point to the new structure. - Removed legacy `wdio.conf.ts` file. - Adjusted TypeScript configuration to exclude `node_modules` and `e2e` directories.
- Replace all 'any' types with proper TypeScript types (WebdriverIO.Capabilities, Record<string, unknown>, etc.) - Fix Android APK path in wdio.android.conf.ts (test/apps/app-release.apk) - Fix Android test script in package.json to use wdio.android.conf.ts - Add missing driver import in home-onboarding-screen.ts - All tests passing on both iOS and Android
- Updated `package.json` to reference new test configuration files for E2E testing. - Added `wdio.conf.ts` for Android E2E testing setup. - Added `wdio.ios.conf.ts` for iOS E2E testing setup, including specific capabilities for both platforms.
…os.conf.ts to test/
- Modified `package.json` to point to the correct paths for E2E testing scripts. - Added `wdio.base.conf.ts` for shared WebdriverIO configuration across platforms. - Introduced `wdio.android.conf.ts` for Android-specific WebdriverIO settings, including capabilities and app path.
- Remove all ^ and ~ version prefixes from dependencies - Pin all dependencies and devDependencies to exact installed versions - Ensures reproducible builds across environments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR pins all dependencies and devDependencies to exact versions by removing all version range prefixes (
^and~). All packages are now locked to their exact installed versions to ensure reproducible builds across different environments and installations.Motivation and Context
Using version ranges (caret
^and tilde~) allows npm to install newer patch/minor versions duringnpm install, which can lead to:By pinning all dependencies to exact versions, we ensure that every developer and CI system installs the exact same dependency tree, leading to more predictable and reproducible builds.
Related Issue
N/A - This is a proactive maintenance improvement to ensure build reproducibility.
Type of change
Note: This is a maintenance/chore change that improves build reproducibility. It does not change functionality but ensures consistent dependency versions across all environments.
Changes Made
^(caret) prefixes from 54 dependencies~(tilde) prefixes from Expo packages and other dependenciespackage-lock.jsonto reflect the pinned versionsTesting
npm installcompletes successfully with pinned versions