We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7352de commit bb7581aCopy full SHA for bb7581a
backends/carp_backend/test/carp_backend_test.dart
@@ -70,9 +70,16 @@ void main() {
70
]),
71
);
72
73
+ // Configure the service with the same study we will use for all testing
74
+ var study = SmartphoneStudy(
75
+ studyId: testStudyId,
76
+ studyDeploymentId: testDeploymentId,
77
+ deviceRoleName: testDeviceRoleName,
78
+ );
79
+
80
// Configure the CAWS services
81
await CarpAuthService().configure(authProperties);
- CarpService().configure(app);
82
+ CarpService().configure(app, study);
83
84
// create a carp data manager in order to initialize json serialization
85
CarpDataManager();
0 commit comments