-
Notifications
You must be signed in to change notification settings - Fork 22
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
Feature/e2e #417
Feature/e2e #417
Conversation
84e92fe
to
5900554
Compare
898f00e
to
4dfc6bf
Compare
4a5a10b
to
72ef8b4
Compare
run: | | ||
pod install | ||
pod update |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is deze nodig?
Een pod install zorgt ervoor dat de pods die in de repo onder de podfile.lock zitten worden geinstalleerd. Door een pod update te doen ga je de locks negeren en hogere pod versies installeren. De uiteindelijk build is dan niet tegen dezelfde pods als in de repo.
Ik zou verwachten dat als er een pod update moet gebeuren, die dan door ons gedaan wordt en gecommit wordt in de repo. Deze e2e moet gewoon oppikken wat daarin beslist werd?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hoe zorgen we er dan best voor dat we altijd tegen de laatste versie van alle native dependencies builden?
|
||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions | ||
{ | ||
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deze setup is ok als start, maar zal nog een extra pass nodig hebben om ook de new architecture te ondersteunen. Maar laten we dit nu eerst vooral al opstarten onder deze vorm.
Added some e2e tests to github workflows.