From c2c30fb2e7232fbf8c4db8069b330e45452c209d Mon Sep 17 00:00:00 2001 From: Maximilian Fischer Date: Fri, 9 Oct 2020 13:14:53 +0200 Subject: [PATCH] Update migrate-1-0-28.md Added section for tests at migration guide. Fix: https://github.com/parse-community/Parse-SDK-Flutter/issues/385#issuecomment-695939265 --- docs/migrate-1-0-28.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/migrate-1-0-28.md b/docs/migrate-1-0-28.md index b6ae4fda4..e7771ad91 100644 --- a/docs/migrate-1-0-28.md +++ b/docs/migrate-1-0-28.md @@ -43,6 +43,10 @@ Parse().initialize( ); ``` +### optional: adjust your tests +You tests might fail if the package tries to automatically discover facts like you applications name, version, package name or the default file directory. +You can avoid this automatic discovery by providing values for `appName`, `appVersion`, `appPackageName` as well as `fileDirectory` at you `Parse().initialize()` call. + ### changed network library In order to provide a `ProgressCallback` for heavy file operations, the network library was switched from [http](https://pub.dev/packages/http) to [dio](https://pub.dev/packages/dio).