File tree 7 files changed +2
-17
lines changed
integrationtestapp/integration_test
7 files changed +2
-17
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ android {
48
48
dependencies {
49
49
testImplementation ' org.jetbrains.kotlin:kotlin-test'
50
50
testImplementation ' org.mockito:mockito-core:5.0.0'
51
- implementation ' id.passage.android:passage:1.8.1 '
51
+ implementation ' id.passage.android:passage:1.8.2 '
52
52
implementation ' com.google.code.gson:gson:2.9.0'
53
53
}
54
54
Original file line number Diff line number Diff line change @@ -14,9 +14,6 @@ void main() {
14
14
setUp (() async {
15
15
if (! kIsWeb) {
16
16
String basePath = IntegrationTestConfig .apiBaseUrl;
17
- if (PlatformHelper .isAndroid) {
18
- basePath += '/v1' ;
19
- }
20
17
await passage.overrideBasePath (basePath);
21
18
}
22
19
});
Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ void main() {
13
13
setUp (() async {
14
14
if (! kIsWeb) {
15
15
String basePath = IntegrationTestConfig .apiBaseUrl;
16
- if (PlatformHelper .isAndroid) {
17
- basePath += '/v1' ;
18
- }
19
16
await passage.overrideBasePath (basePath);
20
17
}
21
18
});
Original file line number Diff line number Diff line change 1
1
import 'package:passage_flutter/passage_flutter_models/passage_user.dart' ;
2
2
3
3
class IntegrationTestConfig {
4
- static const String apiBaseUrl = "https://auth-uat.passage.dev" ;
4
+ static const String apiBaseUrl = "https://auth-uat.passage.dev/v1 " ;
5
5
static const String appIdOtp = "Ezbk6fSdx9pNQ7v7UbVEnzeC" ;
6
6
static const String appIdMagicLink = "Pea2GdtBHN3esylK4ZRlF19U" ;
7
7
static const int waitTimeMilliseconds = 8000 ;
Original file line number Diff line number Diff line change @@ -14,9 +14,6 @@ void main() {
14
14
setUpAll (() async {
15
15
if (! kIsWeb) {
16
16
String basePath = IntegrationTestConfig .apiBaseUrl;
17
- if (PlatformHelper .isAndroid) {
18
- basePath += '/v1' ;
19
- }
20
17
await passage.overrideBasePath (basePath);
21
18
}
22
19
});
Original file line number Diff line number Diff line change @@ -14,9 +14,6 @@ void main() {
14
14
setUp (() async {
15
15
if (! kIsWeb) {
16
16
String basePath = IntegrationTestConfig .apiBaseUrl;
17
- if (PlatformHelper .isAndroid) {
18
- basePath += '/v1' ;
19
- }
20
17
await passage.overrideBasePath (basePath);
21
18
}
22
19
});
Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ void main() {
13
13
setUp (() async {
14
14
if (! kIsWeb) {
15
15
String basePath = IntegrationTestConfig .apiBaseUrl;
16
- if (PlatformHelper .isAndroid) {
17
- basePath += '/v1' ;
18
- }
19
16
await passage.overrideBasePath (basePath);
20
17
}
21
18
});
You can’t perform that action at this time.
0 commit comments